gst/gst.c: Escape a % to make gtkdoc happier; bug 322958.
authorMichael Smith <msmith@xiph.org>
Thu, 1 Dec 2005 23:57:07 +0000 (23:57 +0000)
committerMichael Smith <msmith@xiph.org>
Thu, 1 Dec 2005 23:57:07 +0000 (23:57 +0000)
Original commit message from CVS:
* gst/gst.c:
Escape a % to make gtkdoc happier; bug 322958.

ChangeLog
gst/gst.c

index b22e045..61e7c3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-02  Michael Smith  <msmith@fluendo.com>
+
+       * gst/gst.c:
+         Escape a % to make gtkdoc happier; bug 322958.
+
 === release 0.9.7 ===
 
 2005-12-01   <thomas (at) apestaart (dot) org>
index 71f8353..660269a 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -81,7 +81,7 @@
  *  g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
  *  g_option_context_add_group (ctx, gst_init_get_option_group ());
  *  if (!g_option_context_parse (ctx, &amp;argc, &amp;argv, &amp;err)) {
- *    g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
+ *    g_print ("Error initializing: &percnt;s\n", GST_STR_NULL (err->message));
  *    exit (1);
  *  }
  *  g_option_context_free (ctx);