diff options
Diffstat (limited to '')
-rw-r--r-- | jnlib/argparse.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jnlib/argparse.c b/jnlib/argparse.c index 120b09eb8..5813b9b82 100644 --- a/jnlib/argparse.c +++ b/jnlib/argparse.c @@ -229,6 +229,9 @@ store_alias( ARGPARSE_ARGS *arg, char *name, char *value ) * and fix the probelms IRIX has with (ALIAS_DEV)arg.. * used as lvalue */ + (void)arg; + (void)name; + (void)value; #if 0 ALIAS_DEF a = jnlib_xmalloc( sizeof *a ); a->name = name; @@ -507,6 +510,8 @@ find_long_option( ARGPARSE_ARGS *arg, int i; size_t n; + (void)arg; + /* Would be better if we can do a binary search, but it is not possible to reorder our option table because we would mess up our help strings - What we can do is: Build a nice option |