diff libao2/ao_pulse.c @ 25385:52f6c42c43bb

Fix indentation
author reimar
date Sat, 15 Dec 2007 17:07:40 +0000
parents 9199a89af9d6
children bd46b759fd35
line wrap: on
line diff
--- a/libao2/ao_pulse.c	Sat Dec 15 17:06:59 2007 +0000
+++ b/libao2/ao_pulse.c	Sat Dec 15 17:07:40 2007 +0000
@@ -256,10 +256,10 @@
 
 /** Play the specified data to the pulseaudio server */
 static int play(void* data, int len, int flags) {
-        if (pa_stream_write(stream, data, len, NULL, 0, PA_SEEK_RELATIVE) < 0) {
-            GENERIC_ERR_MSG(context, "pa_stream_write() failed");
-            return -1;
-        }
+    if (pa_stream_write(stream, data, len, NULL, 0, PA_SEEK_RELATIVE) < 0) {
+        GENERIC_ERR_MSG(context, "pa_stream_write() failed");
+        return -1;
+    }
     return len;
 }