aboutsummaryrefslogtreecommitdiffstats
path: root/src/firemon/firemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firemon/firemon.c')
-rw-r--r--src/firemon/firemon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/firemon/firemon.c b/src/firemon/firemon.c
index 238fbcdfe..5ae0ed013 100644
--- a/src/firemon/firemon.c
+++ b/src/firemon/firemon.c
@@ -40,7 +40,7 @@ static int arg_top = 0;
40static int arg_list = 0; 40static int arg_list = 0;
41static int arg_netstats = 0; 41static int arg_netstats = 0;
42static int arg_apparmor = 0; 42static int arg_apparmor = 0;
43int arg_nowrap = 0; 43int arg_wrap = 0;
44 44
45static struct termios tlocal; // startup terminal setting 45static struct termios tlocal; // startup terminal setting
46static struct termios twait; // no wait on key press 46static struct termios twait; // no wait on key press
@@ -206,8 +206,8 @@ int main(int argc, char **argv) {
206 } 206 }
207 207
208 // etc 208 // etc
209 else if (strcmp(argv[i], "--nowrap") == 0) 209 else if (strcmp(argv[i], "--wrap") == 0)
210 arg_nowrap = 1; 210 arg_wrap = 1;
211 211
212 // invalid option 212 // invalid option
213 else if (*argv[i] == '-') { 213 else if (*argv[i] == '-') {