Fix a few more issues shown up by gnome-db2html2 - %'s should be written as % (was causing gnome-db2html2 to s...

Original commit message from CVS:
Fix a few more issues shown up by gnome-db2html2 - %'s should be written
as % (was causing gnome-db2html2 to segfault, though I've a patch
for them to fix that).  Also correct an id which appeared twice.
This commit is contained in:
Richard Boulton 2001-02-16 16:48:54 +00:00
parent acfb1fc447
commit 1eb9c731cf
11 changed files with 14 additions and 14 deletions

View file

@ -17,7 +17,7 @@
</para> </para>
</chapter> </chapter>
<chapter id="cha-testapp-connect"> <chapter id="cha-testapp-running">
<title>Running the pipeline</title> <title>Running the pipeline</title>
<para> <para>
</para> </para>

View file

@ -110,7 +110,7 @@
while (elements) { while (elements) {
GstElement *element = GST_ELEMENT (elements-&gt;data); GstElement *element = GST_ELEMENT (elements-&gt;data);
g_print ("element in bin: %s\n", gst_element_get_name (element)); g_print ("element in bin: &percnt;s\n", gst_element_get_name (element));
elements = g_list_next (elements); elements = g_list_next (elements);
} }

View file

@ -102,7 +102,7 @@ new_pad_created (GstElement *parse, GstPad *pad, GstElement *pipeline)
GtkWidget *appwindow; GtkWidget *appwindow;
g_print ("***** a new pad %s was created\n", gst_pad_get_name (pad)); g_print ("***** a new pad &percnt;s was created\n", gst_pad_get_name (pad));
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PAUSED); gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PAUSED);

View file

@ -38,7 +38,7 @@ main (int argc, char *argv[])
gst_init(&amp;argc, &amp;argv); gst_init(&amp;argc, &amp;argv);
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;n", argv[0]); g_print ("usage: &percnt;s &lt;filename&gt;n", argv[0]);
exit (-1); exit (-1);
} }

View file

@ -41,7 +41,7 @@ main (int argc, char *argv[])
GstElement *pipeline; GstElement *pipeline;
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: &percnt;s &lt;filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }

View file

@ -34,7 +34,7 @@
while (pads) { while (pads) {
GstPad *pad = GST_PAD (pads-&gt;data); GstPad *pad = GST_PAD (pads-&gt;data);
g_print ("pad name %s\n", gst_pad_get_name (pad)); g_print ("pad name &percnt;s\n", gst_pad_get_name (pad));
pads = g_list_next (pads); pads = g_list_next (pads);
} }
@ -82,7 +82,7 @@
static void static void
pad_connect_func (GstElement *parser, GstPad *pad, GstElement *pipeline) pad_connect_func (GstElement *parser, GstPad *pad, GstElement *pipeline)
{ {
g_print("***** a new pad %s was created\n", gst_pad_get_name(pad)); g_print("***** a new pad &percnt;s was created\n", gst_pad_get_name(pad));
gst_element_set_state (pipeline, GST_STATE_PAUSED); gst_element_set_state (pipeline, GST_STATE_PAUSED);
@ -258,12 +258,12 @@ Pads:
... ...
caps = gst_pad_get_caps_list (pad); caps = gst_pad_get_caps_list (pad);
g_print ("pad name %s\n", gst_pad_get_name (pad)); g_print ("pad name &percnt;s\n", gst_pad_get_name (pad));
while (caps) { while (caps) {
GstCaps *cap = (GstCaps *) caps-&gt;data; GstCaps *cap = (GstCaps *) caps-&gt;data;
g_print (" Capability name %s, MIME type\n", gst_caps_get_name (cap), g_print (" Capability name &percnt;s, MIME type\n", gst_caps_get_name (cap),
gst_caps_get_mime (cap)); gst_caps_get_mime (cap));
caps = g_list_next (caps); caps = g_list_next (caps);

View file

@ -55,7 +55,7 @@ struct _GstPlugin {
while (plugins) { while (plugins) {
GstPlugin *plugin = (GstPlugin *)plugins-&gt;data; GstPlugin *plugin = (GstPlugin *)plugins-&gt;data;
g_print ("plugin: %s\n", gst_plugin_get_name (plugin)); g_print ("plugin: &percnt;s\n", gst_plugin_get_name (plugin));
plugins = g_list_next (plugins); plugins = g_list_next (plugins);
} }

View file

@ -66,7 +66,7 @@ main (int argc, char *argv[])
gst_init (&amp;argc,&amp;argv); gst_init (&amp;argc,&amp;argv);
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: &percnt;s &lt;filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }

View file

@ -77,7 +77,7 @@ main (int argc, char *argv[])
GstElement *thread; GstElement *thread;
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: &percnt;s &lt;filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }

View file

@ -64,7 +64,7 @@ main(int argc, char *argv[])
gst_init(&amp;argc,&amp;argv); gst_init(&amp;argc,&amp;argv);
if (argc != 2) { if (argc != 2) {
g_print("usage: %s &lt;filename&gt;\n", argv[0]); g_print("usage: &percnt;s &lt;filename&gt;\n", argv[0]);
exit(-1); exit(-1);
} }

View file

@ -38,7 +38,7 @@ main (int argc, char *argv[])
gst_init (&amp;argc,&amp;argv); gst_init (&amp;argc,&amp;argv);
if (argc != 2) { if (argc != 2) {
g_print ("usage: %s &lt;filename&gt;\n", argv[0]); g_print ("usage: &percnt;s &lt;filename&gt;\n", argv[0]);
exit (-1); exit (-1);
} }