mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
let's not increment in GST_DEBUG code...
Original commit message from CVS: let's not increment in GST_DEBUG code...
This commit is contained in:
parent
4ec2d4aaf7
commit
f42c6f238f
1 changed files with 2 additions and 2 deletions
|
@ -600,8 +600,8 @@ gst_parse_launch (const gchar * pipeline_description)
|
||||||
g_slist_free (string_list);
|
g_slist_free (string_list);
|
||||||
|
|
||||||
/* print them out */
|
/* print them out */
|
||||||
while (argvn[i]) {
|
while (argvn[i++]) {
|
||||||
GST_DEBUG (0, "arg %d is: %s\n", i, argvn[i++]);
|
GST_DEBUG (0, "arg %d is: %s\n", i-1, argvn[i-1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* do it! */
|
/* do it! */
|
||||||
|
|
Loading…
Reference in a new issue