From 850ee7fc4eb776216f4c4974f84d0357f1b95ecb Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Wed, 5 Oct 2005 12:30:00 +0000 Subject: Rename to omit_symbol_names_option. --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main.c') 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; -- cgit v1.2.1