From: divverent Date: Wed, 18 Feb 2009 20:06:05 +0000 (+0000) Subject: now, for mingw, use the uint32_t names instead of the u_int32_t ones X-Git-Tag: xonotic-v0.1.0preview~1865 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d2605251ffb2883d5f91c528d2fbac99ff0bd48f;p=xonotic%2Fdarkplaces.git now, for mingw, use the uint32_t names instead of the u_int32_t ones git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8730 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cap_ogg.c b/cap_ogg.c index b75c3946..25101167 100644 --- 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