From 58cf3355e8f5838b8f23003f216ec00bc053b83b Mon Sep 17 00:00:00 2001 From: Chris Cheney <calc@xiph.org> Date: Sat, 11 Oct 2003 04:06:29 +0000 Subject: [PATCH] sint_8 and sint_32 values were reversed git-svn-id: http://svn.xiph.org/trunk/ao@5453 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- include/ao/os_types.h.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ao/os_types.h.in b/include/ao/os_types.h.in index 2621251..1855a1c 100644 --- a/include/ao/os_types.h.in +++ b/include/ao/os_types.h.in @@ -32,8 +32,8 @@ typedef unsigned char uint_8; typedef unsigned @SIZE16@ uint_16; typedef unsigned @SIZE32@ uint_32; -typedef signed char sint_32; +typedef signed char sint_8; typedef signed @SIZE16@ sint_16; -typedef signed @SIZE32@ sint_8; +typedef signed @SIZE32@ sint_32; #endif /* __OS_TYPES_H__ */ -- GitLab