[Ffmpeg-cvslog] r5552 - trunk/libavcodec/mem.c

diego subversion
Fri Jun 30 04:47:36 CEST 2006


Author: diego
Date: Fri Jun 30 04:47:36 2006
New Revision: 5552

Modified:
   trunk/libavcodec/mem.c

Log:
spelling fixes courtesy of "Herv? W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com


Modified: trunk/libavcodec/mem.c
==============================================================================
--- trunk/libavcodec/mem.c	(original)
+++ trunk/libavcodec/mem.c	Fri Jun 30 04:47:36 2006
@@ -49,7 +49,7 @@
     long diff;
 #endif
 
-    /* lets disallow possible ambiguous cases */
+    /* let's disallow possible ambiguous cases */
     if(size > INT_MAX)
         return NULL;
 
@@ -103,12 +103,12 @@
     int diff;
 #endif
 
-    /* lets disallow possible ambiguous cases */
+    /* let's disallow possible ambiguous cases */
     if(size > INT_MAX)
         return NULL;
 
 #ifdef MEMALIGN_HACK
-    //FIXME this isnt aligned correctly though it probably isnt needed
+    //FIXME this isn't aligned correctly, though it probably isn't needed
     if(!ptr) return av_malloc(size);
     diff= ((char*)ptr)[-1];
     return realloc(ptr - diff, size + diff) + diff;




More information about the ffmpeg-cvslog mailing list