You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Use parentheses around assignment used as truth value, fix warning.
Originally committed as revision 17437 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user