From b71c668c577f7780362f7ea632895c11e3760d66 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 21 Jul 2007 15:08:09 +0000 Subject: style fix (stray space before ';') --- libbb/speed_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbb/speed_table.c') 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) 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; -- cgit v1.2.3