gst/gstpad.c: Fix some typos.

Original commit message from CVS:
2005-11-03  Julien MOUTTE  <julien@moutte.net>

* gst/gstpad.c: (gst_pad_alloc_buffer): Fix some typos.
This commit is contained in:
Julien Moutte 2005-11-03 10:56:23 +00:00
parent 215a6a26e0
commit e4f8d3b6de
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-11-03 Julien MOUTTE <julien@moutte.net>
* gst/gstpad.c: (gst_pad_alloc_buffer): Fix some typos.
2005-11-03 Tim-Philipp Müller <tim at centricular dot net>
* docs/manual/advanced-position.xml:

View file

@ -2544,14 +2544,14 @@ fallback:
not_negotiated:
{
GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
"alloc function retured unacceptable buffer");
"alloc function returned unacceptable buffer");
return GST_FLOW_NOT_NEGOTIATED;
}
peer_error:
{
gst_object_unref (peer);
GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
"alloc function retured error %s", gst_flow_get_name (ret));
"alloc function returned error %s", gst_flow_get_name (ret));
return ret;
}
}