[FFmpeg-soc] [soc]: r4618 - concat/libavformat/datanode.c
gkovacs
subversion at mplayerhq.hu
Sun Jul 5 20:55:47 CEST 2009
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;
More information about the FFmpeg-soc
mailing list