summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-08-30 06:26:49 +0000
committerMonty <xiphmont@xiph.org>2000-08-30 06:26:49 +0000
commitd95be10be9f8b21a40531f7969df5bf44e60c3e7 (patch)
tree58e1e750e13e5036fb994b04107d10dbadc83e3e
parent0946af36afe7a3fcf6e203ce4e620f20cc878369 (diff)
downloadlibvorbis-git-d95be10be9f8b21a40531f7969df5bf44e60c3e7.tar.gz
wrong defines for win in os_types.h.in (typo)
svn path=/trunk/vorbis/; revision=606
-rw-r--r--include/vorbis/os_types.h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vorbis/os_types.h.in b/include/vorbis/os_types.h.in
index cc7502e6..ab783c21 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