summaryrefslogtreecommitdiff
path: root/libbb/speed_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/speed_table.c')
-rw-r--r--libbb/speed_table.c4
1 files changed, 2 insertions, 2 deletions
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;