diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-03-10 09:31:20 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-03-10 09:31:20 +0000 |
commit | c4fa54da174537cf3b5a9f066ae60a3109e7030d (patch) | |
tree | 88f69b0587e1e578654884250de586cd4b8e8cec /sys/osxaudio | |
parent | d441140cd648e835d91855c21a46b655c0ae4991 (diff) |
Fix double semicolons
Diffstat (limited to 'sys/osxaudio')
-rw-r--r-- | sys/osxaudio/gstosxaudioringbuffer.c | 2 | ||||
-rw-r--r-- | sys/osxaudio/gstosxcoreaudiocommon.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/osxaudio/gstosxaudioringbuffer.c b/sys/osxaudio/gstosxaudioringbuffer.c index 7c8c92a02..fff06728a 100644 --- a/sys/osxaudio/gstosxaudioringbuffer.c +++ b/sys/osxaudio/gstosxaudioringbuffer.c @@ -140,7 +140,7 @@ gst_osx_audio_ring_buffer_dispose (GObject * object) static gboolean gst_osx_audio_ring_buffer_open_device (GstAudioRingBuffer * buf) { - GstOsxAudioRingBuffer *osxbuf = GST_OSX_AUDIO_RING_BUFFER (buf);; + GstOsxAudioRingBuffer *osxbuf = GST_OSX_AUDIO_RING_BUFFER (buf); if (!gst_core_audio_select_device (osxbuf->core_audio)) return FALSE; diff --git a/sys/osxaudio/gstosxcoreaudiocommon.c b/sys/osxaudio/gstosxcoreaudiocommon.c index 0b9e892fe..24f778d11 100644 --- a/sys/osxaudio/gstosxcoreaudiocommon.c +++ b/sys/osxaudio/gstosxcoreaudiocommon.c @@ -304,7 +304,7 @@ gst_core_audio_set_format (GstCoreAudio * core_audio, if (status) { GST_WARNING_OBJECT (core_audio->osxbuf, "Failed to set audio description: %d", (int) status); - return FALSE;; + return FALSE; } return TRUE; |