]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
now, for mingw, use the uint32_t names instead of the u_int32_t ones
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 18 Feb 2009 20:06:05 +0000 (20:06 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 18 Feb 2009 20:06:05 +0000 (20:06 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8730 d7cf8633-e32d-0410-b094-e92efae38249

cap_ogg.c

index b75c3946e0e4cb18d6df04f5afc69fac0dadde16..251011674ce61942e059e9045df8952cd013b2d4 100644 (file)
--- a/cap_ogg.c
+++ b/cap_ogg.c
@@ -24,9 +24,9 @@ typedef unsigned __int32 ogg_uint32_t;
 typedef __int64 ogg_int64_t;
 #else
 typedef int16_t ogg_int16_t;
-typedef u_int16_t ogg_uint16_t;
+typedef uint16_t ogg_uint16_t;
 typedef int32_t ogg_int32_t;
-typedef u_int32_t ogg_uint32_t;
+typedef uint32_t ogg_uint32_t;
 typedef int64_t ogg_int64_t;
 #endif