diff options
author | Sven Nierlein <sven@nierlein.org> | 2016-11-07 23:07:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 23:07:34 +0100 |
commit | 19972e99f8634db02211cdfb6eb36078b4a825a8 (patch) | |
tree | b671386b4063816ec73c13423f668759ebee1fd1 /plugins | |
parent | 5ebc24d998ef3e5aaee2810dcbd1cb233aff32d6 (diff) | |
parent | 0608d3f16aa479a00b55dd0a4807f703d8e9b14f (diff) | |
download | monitoring-plugins-19972e99f8634db02211cdfb6eb36078b4a825a8.tar.gz |
Merge pull request #1309 from waja/negate_remove_unused_variables
negate: remove unused variables
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/negate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index beaed1ea..b320e356 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -59,8 +59,8 @@ static int state[4] = { int main (int argc, char **argv) { - int found = 0, result = STATE_UNKNOWN; - char *buf, *sub; + int result = STATE_UNKNOWN; + char *sub; char **command_line; output chld_out, chld_err; int i; |