*_is_writeable => *_is_writable (spelling)
authorBenjamin Otte <otte@gnome.org>
Wed, 16 Apr 2003 18:36:29 +0000 (18:36 +0000)
committerBenjamin Otte <otte@gnome.org>
Wed, 16 Apr 2003 18:36:29 +0000 (18:36 +0000)
Original commit message from CVS:
*_is_writeable => *_is_writable (spelling)

gst/audioconvert/gstaudioconvert.c

index 05fc70a..6f7387d 100644 (file)
@@ -505,7 +505,7 @@ static GstBuffer*
 gst_audio_convert_get_buffer (GstBuffer *buf, guint size)
 {
   GstBuffer *ret;
-  if (buf->maxsize >= size && gst_buffer_is_writeable (buf)) {
+  if (buf->maxsize >= size && gst_buffer_is_writable (buf)) {
     gst_buffer_ref (buf);
     buf->size = size;
     return buf;