[FFmpeg-cvslog] r17437 - trunk/vhook/imlib2.c

stefano subversion
Wed Feb 18 22:30:44 CET 2009


Author: stefano
Date: Wed Feb 18 22:30:44 2009
New Revision: 17437

Log:
Use parentheses aroung assignment used as truth value, fix warning.

Modified:
   trunk/vhook/imlib2.c

Modified: trunk/vhook/imlib2.c
==============================================================================
--- trunk/vhook/imlib2.c	Wed Feb 18 22:29:03 2009	(r17436)
+++ trunk/vhook/imlib2.c	Wed Feb 18 22:30:44 2009	(r17437)
@@ -165,7 +165,7 @@ int Configure(void **ctxp, int argc, cha
 
     /* Use ':' to split FONTPATH */
     if (fp)
-        while (p = strchr(fp, ':')) {
+        while ((p = strchr(fp, ':'))) {
             *p = 0;
             imlib_add_path_to_font_path(fp);
             fp = p + 1;




More information about the ffmpeg-cvslog mailing list