diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 19:02:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 19:02:20 +0000 |
commit | cf94446af7a75385955e0c4de2d5898b219f5719 (patch) | |
tree | dfbdb723c30ce9d1a345b20392cebb63fb7ca0d9 /libbb/parse_number.c | |
parent | 6edaddec0238c6b7558c47fe24e33fae703385b5 (diff) | |
download | busybox-w32-cf94446af7a75385955e0c4de2d5898b219f5719.tar.gz busybox-w32-cf94446af7a75385955e0c4de2d5898b219f5719.tar.bz2 busybox-w32-cf94446af7a75385955e0c4de2d5898b219f5719.zip |
random style fixes
Diffstat (limited to 'libbb/parse_number.c')
-rw-r--r-- | libbb/parse_number.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/parse_number.c b/libbb/parse_number.c index 3b9134a74..c7dafb7f0 100644 --- a/libbb/parse_number.c +++ b/libbb/parse_number.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include "libbb.h" | 15 | #include "libbb.h" |
16 | 16 | ||
17 | unsigned long bb_xparse_number(const char *numstr, | 17 | unsigned long bb_xparse_number(const char *numstr, |
18 | const struct suffix_mult *suffixes) | 18 | const struct suffix_mult *suffixes) |
19 | { | 19 | { |
20 | unsigned long int r; | 20 | unsigned long int r; |
21 | char *e; | 21 | char *e; |
@@ -46,5 +46,5 @@ unsigned long bb_xparse_number(const char *numstr, | |||
46 | } while (suffixes->suffix); | 46 | } while (suffixes->suffix); |
47 | } | 47 | } |
48 | } | 48 | } |
49 | bb_error_msg_and_die("invalid number `%s'", numstr); | 49 | bb_error_msg_and_die("invalid number '%s'", numstr); |
50 | } | 50 | } |