1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

man-generator: Remove unused variable.

man-generator.c:2976:6: warning: variable "sep" set but not used
This commit is contained in:
Alasdair G Kergon 2017-03-20 16:55:30 +00:00
parent 862ca6e8b7
commit b3e833c777

View File

@ -2973,7 +2973,6 @@ static void _print_man_all_options_list(struct command_name *cname)
static void _print_man_all_options_desc(struct command_name *cname)
{
int opt_enum, val_enum;
int sep = 0;
int i;
for (i = 0; i < ARG_COUNT; i++) {
@ -3018,8 +3017,6 @@ static void _print_man_all_options_desc(struct command_name *cname)
}
printf(".ad b\n");
sep = 1;
}
}