From: Sami Kerola Date: Sat, 25 Feb 2012 21:48:15 +0000 (+0100) Subject: watch: remove unused variables X-Git-Tag: v3.3.3~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=703e1e048616d36603d6a8f01363fbe15ce64dc6;p=procps-ng watch: remove unused variables watch.c:281:43: warning: unused variable 'option_version' [-Wunused-variable] watch.c:281:26: warning: unused variable 'option_help' [-Wunused-variable] Signed-off-by: Sami Kerola Conflicts: watch.c --- diff --git a/watch.c b/watch.c index 69d3a0ae..aae46321 100644 --- a/watch.c +++ b/watch.c @@ -279,7 +279,7 @@ int main(int argc, char *argv[]) option_exec = 0, option_beep = 0, option_color = 0, - option_errexit = 0, option_chgexit = 0, option_help = 0, option_version = 0; + option_errexit = 0, option_chgexit = 0; double interval = 2; char *command; char **command_argv;