diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-09 13:28:31 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-09 13:28:31 +0000 |
commit | f01e1784e53a1171401dc3749e127c4816b5d6bb (patch) | |
tree | 8d18cd19961a3a98bdab2490e87d0e2e1d615125 | |
parent | 5184336647d29624cfc24751360d502a2044ca58 (diff) | |
download | busybox-w32-f01e1784e53a1171401dc3749e127c4816b5d6bb.tar.gz busybox-w32-f01e1784e53a1171401dc3749e127c4816b5d6bb.tar.bz2 busybox-w32-f01e1784e53a1171401dc3749e127c4816b5d6bb.zip |
removed a warning about an unused pargv in bb_getopt_ulflags. Noticed by Tito
-rw-r--r-- | libbb/getopt_ulflags.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/getopt_ulflags.c b/libbb/getopt_ulflags.c index 376893fc8..f18ee2d2d 100644 --- a/libbb/getopt_ulflags.c +++ b/libbb/getopt_ulflags.c | |||
@@ -294,7 +294,9 @@ bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) | |||
294 | va_list p; | 294 | va_list p; |
295 | const struct option *l_o; | 295 | const struct option *l_o; |
296 | unsigned long trigger; | 296 | unsigned long trigger; |
297 | #ifdef CONFIG_PS | ||
297 | char **pargv = NULL; | 298 | char **pargv = NULL; |
299 | #endif | ||
298 | int min_arg = 0; | 300 | int min_arg = 0; |
299 | int max_arg = -1; | 301 | int max_arg = -1; |
300 | 302 | ||