wrong defines for win in os_types.h.in (typo)
authorMonty <xiphmont@xiph.org>
Wed, 30 Aug 2000 06:26:49 +0000 (06:26 +0000)
committerMonty <xiphmont@xiph.org>
Wed, 30 Aug 2000 06:26:49 +0000 (06:26 +0000)
svn path=/trunk/vorbis/; revision=606

include/vorbis/os_types.h.in

index cc7502e..ab783c2 100644 (file)
@@ -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