style fix (stray space before ';')
This commit is contained in:
@@ -75,7 +75,7 @@ const char *make_human_readable_str(unsigned long long size,
|
||||
if (frac >= 5) {
|
||||
++val;
|
||||
}
|
||||
f = "%llu%*c" /* fmt_no_tenths */ ;
|
||||
f = "%llu%*c" /* fmt_no_tenths */;
|
||||
frac = 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -94,7 +94,7 @@ int main(void)
|
||||
unsigned long v;
|
||||
speed_t s;
|
||||
|
||||
for (v = 0 ; v < 500000 ; v++) {
|
||||
for (v = 0 ; v < 500000; v++) {
|
||||
s = tty_value_to_baud(v);
|
||||
if (s == (speed_t) -1) {
|
||||
continue;
|
||||
@@ -104,7 +104,7 @@ int main(void)
|
||||
|
||||
printf("-------------------------------\n");
|
||||
|
||||
for (s = 0 ; s < 010017+1 ; s++) {
|
||||
for (s = 0 ; s < 010017+1; s++) {
|
||||
v = tty_baud_to_value(s);
|
||||
if (!v) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user