aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-10-05 12:30:00 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-10-05 12:30:00 +0000
commit850ee7fc4eb776216f4c4974f84d0357f1b95ecb (patch)
tree18dabe4828ef39460ff7bb6802b65aac00bc2844 /src/main.c
parent802c02634ffb36a1ca84207dc47f27d86bcbfc70 (diff)
downloadcflow-850ee7fc4eb776216f4c4974f84d0357f1b95ecb.tar.gz
cflow-850ee7fc4eb776216f4c4974f84d0357f1b95ecb.tar.bz2
Rename to omit_symbol_names_option.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 897623f..e7ed4a8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -207,7 +207,7 @@ 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_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.