aboutsummaryrefslogtreecommitdiffstats
path: root/util/argparse.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-05-24 16:53:14 +0000
committerDavid Shaw <[email protected]>2003-05-24 16:53:14 +0000
commitc84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72 (patch)
treedc24a02a957c942f43de558c2424dc897d7f1345 /util/argparse.c
parent* cipher.h, i18n.h, iobuf.h, memory.h, mpi.h, types.h, util.h: Edit all (diff)
downloadgnupg-c84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72.tar.gz
gnupg-c84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72.zip
* argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c,
simple-gettext.c, errors.c, http.c, memory.c, secmem.c, ttyio.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
Diffstat (limited to '')
-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 );