gst/gstpad.c: Fix some typos.
authorJulien Moutte <julien@moutte.net>
Thu, 3 Nov 2005 10:56:23 +0000 (10:56 +0000)
committerJulien Moutte <julien@moutte.net>
Thu, 3 Nov 2005 10:56:23 +0000 (10:56 +0000)
Original commit message from CVS:
2005-11-03  Julien MOUTTE  <julien@moutte.net>

* gst/gstpad.c: (gst_pad_alloc_buffer): Fix some typos.

ChangeLog
gst/gstpad.c

index 0d28b02..cd93899 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 5b48600..ef3cffd 100644 (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;
   }
 }