From: Monty Date: Wed, 30 Aug 2000 06:26:49 +0000 (+0000) Subject: wrong defines for win in os_types.h.in (typo) X-Git-Tag: v1.3.3~1144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d95be10be9f8b21a40531f7969df5bf44e60c3e7;p=platform%2Fupstream%2Flibvorbis.git wrong defines for win in os_types.h.in (typo) svn path=/trunk/vorbis/; revision=606 --- diff --git a/include/vorbis/os_types.h.in b/include/vorbis/os_types.h.in index cc7502e..ab783c2 100644 --- a/include/vorbis/os_types.h.in +++ b/include/vorbis/os_types.h.in @@ -14,7 +14,7 @@ ******************************************************************** function: #ifdef jail to whip a few platforms into the UNIX ideal. - last mod: $Id: os_types.h.in,v 1.1 2000/08/30 06:09:21 xiphmont Exp $ + last mod: $Id: os_types.h.in,v 1.2 2000/08/30 06:26:49 xiphmont Exp $ ********************************************************************/ @@ -24,7 +24,7 @@ /* MSVC/Borland */ typedef __int64 ogg_int64_t; typedef __int32 ogg_int32_t; -typedef unsigned __int32 ogg_int32_t; +typedef unsigned __int32 ogg_uint32_t; typedef __int16 ogg_int16_t; #else @@ -33,7 +33,7 @@ typedef __int16 ogg_int16_t; #include <_G_config.h> typedef _G_int64_t ogg_int64_t; typedef _G_int32_t ogg_int32_t; -typedef unsigned _G_int32_t ogg_int32_t; +typedef unsigned _G_int32_t ogg_uint32_t; typedef _G_int16_t ogg_int16_t; #endif #else