diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2003-04-04 19:12:58 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2003-04-04 19:12:58 +0000 |
commit | 5506241cf356c8854d62d08470ea64c9c66502f6 (patch) | |
tree | ca091ed3610277983d8ba920e1857bef4223a8f3 /tools | |
parent | 480dfe3198d0f579bce1f3d251fa8ba40d917765 (diff) |
Fix #109350, aplied patch from Peter N. Lundblad.
Original commit message from CVS:
Fix #109350, aplied patch from Peter N. Lundblad.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gst-xmlinspect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gst-xmlinspect.c b/tools/gst-xmlinspect.c index 5b26c125a..9b97bcae4 100644 --- a/tools/gst-xmlinspect.c +++ b/tools/gst-xmlinspect.c @@ -35,7 +35,7 @@ G_STMT_START{ \ #define PUT_STRING(pfx, str, a...) \ G_STMT_START{ \ - g_print ("%*.*s"str"\n", pfx, pfx, "", ##a); \ + g_print ("%*.*s"str"\n", pfx, pfx, "" , ##a); \ }G_STMT_END #endif |