svn commit: trunk/busybox/libbb

landley at busybox.net landley at busybox.net
Tue Jun 20 16:43:07 UTC 2006


Author: landley
Date: 2006-06-20 09:43:05 -0700 (Tue, 20 Jun 2006)
New Revision: 15441

Log:
The type changed too.


Modified:
   trunk/busybox/libbb/speed_table.c


Changeset:
Modified: trunk/busybox/libbb/speed_table.c
===================================================================
--- trunk/busybox/libbb/speed_table.c	2006-06-20 16:35:37 UTC (rev 15440)
+++ trunk/busybox/libbb/speed_table.c	2006-06-20 16:43:05 UTC (rev 15441)
@@ -56,7 +56,7 @@
 
 enum { NUM_SPEEDS = (sizeof(speeds) / sizeof(struct speed_map)) };
 
-unsigned long tty_baud_to_value(speed_t speed)
+unsigned int tty_baud_to_value(speed_t speed)
 {
 	int i = 0;
 
@@ -72,7 +72,7 @@
 	return 0;
 }
 
-speed_t tty_value_to_baud(unsigned long value)
+speed_t tty_value_to_baud(unsigned int value)
 {
 	int i = 0;
 




More information about the busybox-cvs mailing list