# HG changeset patch # User reimar # Date 1197738460 0 # Node ID 52f6c42c43bbeb15a9f414269cd4bd452c901d0b # Parent 9199a89af9d62edbda1164a177020aaa33bc917e Fix indentation diff -r 9199a89af9d6 -r 52f6c42c43bb libao2/ao_pulse.c --- 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; }