[dahdi-commits] fjoe: freebsd/trunk r9164 - /freebsd/trunk/include/dahdi/compat/types.h

SVN commits to the DAHDI project dahdi-commits at lists.digium.com
Thu Aug 19 02:16:15 CDT 2010


Author: fjoe
Date: Thu Aug 19 02:16:10 2010
New Revision: 9164

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9164
Log:
__le16 and __le32 should be unsigned.

Modified:
    freebsd/trunk/include/dahdi/compat/types.h

Modified: freebsd/trunk/include/dahdi/compat/types.h
URL: http://svnview.digium.com/svn/dahdi/freebsd/trunk/include/dahdi/compat/types.h?view=diff&rev=9164&r1=9163&r2=9164
==============================================================================
--- freebsd/trunk/include/dahdi/compat/types.h (original)
+++ freebsd/trunk/include/dahdi/compat/types.h Thu Aug 19 02:16:10 2010
@@ -12,7 +12,7 @@
 typedef uint32_t __u32;
 typedef uint32_t u32;
 
-typedef int16_t __le16;
-typedef int32_t __le32;
+typedef __u16 __le16;
+typedef __u32 __le32;
 
 #endif /* _DAHDI_COMPAT_TYPES_H_ */




More information about the dahdi-commits mailing list