[xiph-commits] r11368 - trunk/theora/lib

giles at svn.xiph.org giles at svn.xiph.org
Sun May 7 12:56:32 PDT 2006


Author: giles
Date: 2006-05-07 12:56:31 -0700 (Sun, 07 May 2006)
New Revision: 11368

Modified:
   trunk/theora/lib/scan.c
Log:
Clarify the signedness of some arguments. Corrects a warning on Apple gcc 4.0.1.


Modified: trunk/theora/lib/scan.c
===================================================================
--- trunk/theora/lib/scan.c	2006-05-07 19:55:50 UTC (rev 11367)
+++ trunk/theora/lib/scan.c	2006-05-07 19:56:31 UTC (rev 11368)
@@ -349,8 +349,8 @@
 }
 
 static void CreateOutputDisplayMap( PP_INSTANCE *ppi,
-                                    char *InternalFragmentsPtr,
-                                    char *RecentHistoryPtr,
+                                    signed char *InternalFragmentsPtr,
+                                    signed char *RecentHistoryPtr,
                                     unsigned char *ExternalFragmentsPtr ) {
   ogg_uint32_t i;
   ogg_uint32_t HistoryBlocksAdded = 0;



More information about the commits mailing list