aboutsummaryrefslogtreecommitdiffstats
path: root/util/argparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/argparse.c')
-rw-r--r--util/argparse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/argparse.c b/util/argparse.c
index 7169f0e98..3e772d9a7 100644
--- a/util/argparse.c
+++ b/util/argparse.c
@@ -441,7 +441,7 @@ find_long_option( ARGPARSE_ARGS *arg,
for(i=0; opts[i].short_opt; i++ )
if( opts[i].long_opt && !strcmp( opts[i].long_opt, keyword) )
return i;
- #if 0
+#if 0
{
ALIAS_DEF a;
/* see whether it is an alias */
@@ -453,7 +453,7 @@ find_long_option( ARGPARSE_ARGS *arg,
}
}
}
- #endif
+#endif
/* not found, see whether it is an abbreviation */
/* aliases may not be abbreviated */
n = strlen( keyword );