Commit f67a906a authored by stefano's avatar stefano

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17437 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3ba3ddbe
......@@ -165,7 +165,7 @@ int Configure(void **ctxp, int argc, char *argv[])
/* 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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment