diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-12-10 16:56:47 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-12-10 16:56:47 +0100 |
commit | c16b914a728f2786aaa4e1c44c092c3faaf1df48 (patch) | |
tree | 5b33edb77b0db638326c8814eee15366abfb3339 /bpfc.c | |
parent | 19fd2e57dc963f0e26e625645ee6a922cf3aed2f (diff) |
bpfc: make verbose parameter boolean
Verbose mode is a boolean option, so make the variable and parameters
carrying it of type bool.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'bpfc.c')
-rw-r--r-- | bpfc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -40,7 +40,7 @@ static const char *copyright = "Please report bugs to <netsniff-ng@googlegroups. "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law."; -extern int compile_filter(char *file, int verbose, int bypass, int format, +extern int compile_filter(char *file, bool verbose, int bypass, int format, bool invoke_cpp, char **cpp_argv); static void __noreturn help(void) @@ -82,8 +82,8 @@ static void __noreturn version(void) int main(int argc, char **argv) { - int ret, verbose = 0, c, bypass = 0, format = 0; - bool invoke_cpp = false; + int ret, c, bypass = 0, format = 0; + bool verbose = false, invoke_cpp = false; char **cpp_argv = NULL; size_t cpp_argc = 0; char *file = NULL; @@ -104,7 +104,7 @@ int main(int argc, char **argv) version(); break; case 'V': - verbose = 1; + verbose = true; break; case 'p': invoke_cpp = true; |