From 9cece4b198596e89cfe0e774e88c065ee1351098 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Wed, 14 Dec 2011 02:05:23 +0000 Subject: [PATCH] change int8 to signed char for compatibility with chromium type BUG=none TEST=none Review URL: http://webrtc-codereview.appspot.com/318012 git-svn-id: http://libyuv.googlecode.com/svn/trunk@105 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/basic_types.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.chromium b/README.chromium index 6972b18f6..23439308d 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 103 +Version: 104 License: BSD License File: LICENSE diff --git a/include/libyuv/basic_types.h b/include/libyuv/basic_types.h index bf20c5715..54c5f8a55 100644 --- a/include/libyuv/basic_types.h +++ b/include/libyuv/basic_types.h @@ -57,7 +57,7 @@ typedef int int32; typedef unsigned short uint16; typedef short int16; typedef unsigned char uint8; -typedef char int8; +typedef signed char int8; #endif // INT_TYPES_DEFINED // Detect compiler is for x86 or x64.