diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
| commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
| tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /libbb | |
| parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
| download | busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.bz2 busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.zip | |
style fix (stray space before ';')
Diffstat (limited to 'libbb')
| -rw-r--r-- | libbb/human_readable.c | 2 | ||||
| -rw-r--r-- | libbb/speed_table.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libbb/human_readable.c b/libbb/human_readable.c index 7714abecb..09fa82c09 100644 --- a/libbb/human_readable.c +++ b/libbb/human_readable.c | |||
| @@ -75,7 +75,7 @@ const char *make_human_readable_str(unsigned long long size, | |||
| 75 | if (frac >= 5) { | 75 | if (frac >= 5) { |
| 76 | ++val; | 76 | ++val; |
| 77 | } | 77 | } |
| 78 | f = "%llu%*c" /* fmt_no_tenths */ ; | 78 | f = "%llu%*c" /* fmt_no_tenths */; |
| 79 | frac = 1; | 79 | frac = 1; |
| 80 | } | 80 | } |
| 81 | #endif | 81 | #endif |
diff --git a/libbb/speed_table.c b/libbb/speed_table.c index 0f0b33d3b..94a296238 100644 --- a/libbb/speed_table.c +++ b/libbb/speed_table.c | |||
| @@ -94,7 +94,7 @@ int main(void) | |||
| 94 | unsigned long v; | 94 | unsigned long v; |
| 95 | speed_t s; | 95 | speed_t s; |
| 96 | 96 | ||
| 97 | for (v = 0 ; v < 500000 ; v++) { | 97 | for (v = 0 ; v < 500000; v++) { |
| 98 | s = tty_value_to_baud(v); | 98 | s = tty_value_to_baud(v); |
| 99 | if (s == (speed_t) -1) { | 99 | if (s == (speed_t) -1) { |
| 100 | continue; | 100 | continue; |
| @@ -104,7 +104,7 @@ int main(void) | |||
| 104 | 104 | ||
| 105 | printf("-------------------------------\n"); | 105 | printf("-------------------------------\n"); |
| 106 | 106 | ||
| 107 | for (s = 0 ; s < 010017+1 ; s++) { | 107 | for (s = 0 ; s < 010017+1; s++) { |
| 108 | v = tty_baud_to_value(s); | 108 | v = tty_baud_to_value(s); |
| 109 | if (!v) { | 109 | if (!v) { |
| 110 | continue; | 110 | continue; |
