diff options
author | Helmut Grohne <helmut@subdivi.de> | 2008-06-21 11:52:14 +0000 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2008-06-21 11:52:14 +0000 |
commit | 35e2a045b7b87ecd7a4e5f27a6d3078479e3500b (patch) | |
tree | 551534458b740ed69f15c0bb478dae7a61cffe74 | |
parent | 853f3d5052a36290a9732828d45684af49e5fea6 (diff) | |
download | munin-plugins-busybox-35e2a045b7b87ecd7a4e5f27a6d3078479e3500b.tar.gz |
fix bug in swap.c
-rw-r--r-- | swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ int swap(int argc, char **argv) { } } fclose(f); - if(!in*out) { + if(!(in*out)) { fputs("no usable data on /proc/vmstat\n", stderr); return 1; } |