gst/gst.c: Escape a % to make gtkdoc happier; bug 322958.

Original commit message from CVS:
* gst/gst.c:
Escape a % to make gtkdoc happier; bug 322958.
This commit is contained in:
Michael Smith 2005-12-01 23:57:07 +00:00
parent 7d59947bde
commit b32059fdc6
2 changed files with 6 additions and 1 deletions

View file

@ -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>

View file

@ -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);