Author: gkovacs
Date: Sun Jul  5 20:55:46 2009
New Revision: 4618

Log:
changing for to while loop

Modified:
   concat/libavformat/datanode.c

Modified: concat/libavformat/datanode.c
==============================================================================
--- concat/libavformat/datanode.c       Sun Jul  5 20:51:57 2009        (r4617)
+++ concat/libavformat/datanode.c       Sun Jul  5 20:55:46 2009        (r4618)
@@ -54,7 +54,7 @@ DataNode *ff_datanode_tree_from_ini(char
     s = d->name;
     e = 1;
     i = b = 0;
-    for (; (c = *p++); ) {
+    while ((c = *p++)) {
         if (c == '\n') {
             d = ff_datanode_mknext(d);
             i = b = 0;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to