summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-31 19:01:24 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-31 19:01:24 +0000
commit2ab7c301619980fa8b298c4fb9df2e81a7fd3f2d (patch)
treecd3beb8e674866936c8d1c6fb990f4a0f453d359
parent2a98347461bf67dc10d97847ef31e54d74fca1ff (diff)
ges-launch: fix printf format issue
-rw-r--r--tools/ges-launch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ges-launch.c b/tools/ges-launch.c
index 9868cd3e..dfaaa4f4 100644
--- a/tools/ges-launch.c
+++ b/tools/ges-launch.c
@@ -223,7 +223,7 @@ create_timeline (int nbargs, gchar ** argv)
g_error ("'%s': could not open path!", source);
if (!(uri = ensure_uri (source))) {
- GST_ERROR ("couldn't create uri for '%'s", source);
+ GST_ERROR ("couldn't create uri for '%s'", source);
exit (-1);
}
inpoint = str_to_time (argv[i * 3 + 1]);