summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-08-30 01:40:12 +0000
committerMonty <xiphmont@xiph.org>2000-08-30 01:40:12 +0000
commitf03fc45feeecd516647387615332aa04ba65c714 (patch)
treed552e0ea150a4af82e2604b5b1757af5769a1342
parentda87774a7220c4a801f1390f9f3bced88923ee63 (diff)
downloadlibvorbis-git-f03fc45feeecd516647387615332aa04ba65c714.tar.gz
fix typedef typo for int64_t
svn path=/trunk/vorbis/; revision=604
-rw-r--r--include/vorbis/os_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vorbis/os_types.h b/include/vorbis/os_types.h
index 8ed6c203..754bbda5 100644
--- a/include/vorbis/os_types.h
+++ b/include/vorbis/os_types.h
@@ -14,7 +14,7 @@
********************************************************************
function: #ifdef jail to whip a few platforms into the UNIX ideal.
- last mod: $Id: os_types.h,v 1.6 2000/07/07 06:16:24 xiphmont Exp $
+ last mod: $Id: os_types.h,v 1.7 2000/08/30 01:40:12 xiphmont Exp $
********************************************************************/
@@ -26,7 +26,7 @@ typedef __int16 int16_t;
#define vorbis_size32_t int
#else
#include <_G_config.h>
-pedef _G_int64_t int64_t;
+typedef _G_int64_t int64_t;
typedef _G_int32_t int32_t;
typedef _G_int16_t int16_t;
#endif