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 b22e045a0e2f169b7ebee250700f68e856628eae..61e7c3f7c5c4afb9182cb22fb7729620b52c8d2c 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 71f8353e371ba0d66055a34c82554f5b937c4963..660269a23bc7f01e457b003ad4bc348e15053d78 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);