svn commit: trunk/busybox/miscutils
vda at busybox.net
vda at busybox.net
Sat Feb 9 03:39:00 PST 2008
Author: vda
Date: 2008-02-09 03:39:00 -0800 (Sat, 09 Feb 2008)
New Revision: 20970
Log:
microcom: compile fixes
Modified:
trunk/busybox/miscutils/microcom.c
Changeset:
Modified: trunk/busybox/miscutils/microcom.c
===================================================================
--- trunk/busybox/miscutils/microcom.c 2008-02-09 11:37:21 UTC (rev 20969)
+++ trunk/busybox/miscutils/microcom.c 2008-02-09 11:39:00 UTC (rev 20970)
@@ -51,8 +51,8 @@
enum {
OPT_X = 1 << 0, // do not respect Ctrl-X, Ctrl-@
OPT_s = 1 << 1, // baudrate
- OPT_d = 1 << 2 // wait for device response, msecs
- OPT_t = 1 << 3 // timeout, ms
+ OPT_d = 1 << 2, // wait for device response, msecs
+ OPT_t = 1 << 3, // timeout, ms
};
speed_t speed = 9600;
int delay = -1;
@@ -60,6 +60,7 @@
// fetch options
char *opt_s;
+ char *opt_d;
char *opt_t;
unsigned opts;
opt_complementary = "=1"; /* exactly one arg should be there */
More information about the busybox-cvs
mailing list