aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index 897623f..e7ed4a8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -206,8 +206,8 @@ int brief_listing; /* Produce short listing */
int reverse_tree; /* Generate reverse tree */
int max_depth; /* The depth at which the flowgraph is cut off */
int emacs_option; /* Format and check for use with Emacs cflow-mode */
-int omit_arguments_option; /* Omit arguments from function declaration string */
-int omit_symbol_name_option; /* Omit symbol name from symbol declaration string */
+int omit_arguments_option; /* Omit arguments from function declaration string */
+int omit_symbol_names_option; /* Omit symbol name from symbol declaration string */
#define SM_FUNCTIONS 0x0001
#define SM_DATA 0x0002
@@ -609,10 +609,10 @@ parse_opt (int key, char *arg, struct argp_state *state)
omit_arguments_option = 0;
break;
case OPT_OMIT_SYMBOL_NAMES:
- omit_symbol_name_option = 1;
+ omit_symbol_names_option = 1;
break;
case OPT_NO_OMIT_SYMBOL_NAMES:
- omit_symbol_name_option = 0;
+ omit_symbol_names_option = 0;
break;
case 'l':
print_levels = 1;

Return to:

Send suggestions and report system problems to the System administrator.