From d2605251ffb2883d5f91c528d2fbac99ff0bd48f Mon Sep 17 00:00:00 2001 From: divverent Date: Wed, 18 Feb 2009 20:06:05 +0000 Subject: [PATCH] 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 --- cap_ogg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2