svn commit: trunk/busybox/libbb

aldot at busybox.net aldot at busybox.net
Fri May 19 12:44:18 UTC 2006


Author: aldot
Date: 2006-05-19 05:44:16 -0700 (Fri, 19 May 2006)
New Revision: 15129

Log:
- use uint32_t instead of __u32
  Thanks to Rich Felker for pointing this out.


Modified:
   trunk/busybox/libbb/inet_common.c


Changeset:
Modified: trunk/busybox/libbb/inet_common.c
===================================================================
--- trunk/busybox/libbb/inet_common.c	2006-05-19 12:41:13 UTC (rev 15128)
+++ trunk/busybox/libbb/inet_common.c	2006-05-19 12:44:16 UTC (rev 15129)
@@ -206,8 +206,8 @@
 
 #ifndef IN6_IS_ADDR_UNSPECIFIED
 # define IN6_IS_ADDR_UNSPECIFIED(a) \
-	(((__u32 *) (a))[0] == 0 && ((__u32 *) (a))[1] == 0 && \
-	 ((__u32 *) (a))[2] == 0 && ((__u32 *) (a))[3] == 0)
+	(((uint32_t *) (a))[0] == 0 && ((uint32_t *) (a))[1] == 0 && \
+	 ((uint32_t *) (a))[2] == 0 && ((uint32_t *) (a))[3] == 0)
 #endif
 
 




More information about the busybox-cvs mailing list