forgot to remove some debugging noise
[oweals/busybox.git] / stty.c
diff --git a/stty.c b/stty.c
index 0fc0bfbc264e1507502f653f0e8f04c9f1c615de..10e28254d9e8853ffb8bd764014d1c9ea08133ef 100644 (file)
--- a/stty.c
+++ b/stty.c
@@ -28,7 +28,6 @@
 
    */
 
-#include "busybox.h"
 
 #include <termios.h>
 #include <sys/ioctl.h>
@@ -53,6 +52,7 @@
 #include <limits.h>
 #include <memory.h>
 #include <fcntl.h>
+#include "busybox.h"
 
 #define STREQ(a, b) (strcmp ((a), (b)) == 0)
 
@@ -1302,10 +1302,9 @@ static const int NUM_SPEEDS = (sizeof(speeds) / sizeof(struct speed_map));
 static speed_t string_to_baud(const char *arg)
 {
        int i;
-       static const struct suffix_mult stty_zerosuff = { NULL, 0 };
 
        for (i = 0; i < NUM_SPEEDS; ++i)
-               if (parse_number(arg, &stty_zerosuff) == speeds[i].value)
+               if (parse_number(arg, 0) == speeds[i].value)
                        return speeds[i].speed;
        return (speed_t) - 1;
 }