diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-28 22:13:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-28 22:13:55 +0000 |
commit | ab8c9378c93168fcf3f3d7b87089cdc7884880cd (patch) | |
tree | dd3c34a308411abf738a15064452d6cd0ebad3ee /libbb/getopt32.c | |
parent | 6081868ee33c44f5a7227b77876d7e7a83c8aa9e (diff) | |
download | busybox-w32-ab8c9378c93168fcf3f3d7b87089cdc7884880cd.tar.gz busybox-w32-ab8c9378c93168fcf3f3d7b87089cdc7884880cd.tar.bz2 busybox-w32-ab8c9378c93168fcf3f3d7b87089cdc7884880cd.zip |
more "if (p) free(p)" fixes; fix a typo in comment
Diffstat (limited to 'libbb/getopt32.c')
-rw-r--r-- | libbb/getopt32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c index 318f08059..2452eb0a5 100644 --- a/libbb/getopt32.c +++ b/libbb/getopt32.c | |||
@@ -30,7 +30,7 @@ getopt32(char **argv, const char *applet_opts, ...) | |||
30 | 30 | ||
31 | "r" will add 1 (bit 0) | 31 | "r" will add 1 (bit 0) |
32 | "n" will add 2 (bit 1) | 32 | "n" will add 2 (bit 1) |
33 | "u will add 4 (bit 2) | 33 | "u" will add 4 (bit 2) |
34 | "g" will add 8 (bit 3) | 34 | "g" will add 8 (bit 3) |
35 | 35 | ||
36 | and so on. You can also look at the return value as a bit | 36 | and so on. You can also look at the return value as a bit |