summaryrefslogtreecommitdiffstats
path: root/libao2/ao_pulse.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-15 17:07:40 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-15 17:07:40 +0000
commit65792a201f15bcfad880f29c3b52d9f90717b1ca (patch)
tree2a6bb3b4865ef6b46f6359dca8b9cc36d6a0d902 /libao2/ao_pulse.c
parent8778005565fed27927460cde8a80391f55c78541 (diff)
downloadmpv-65792a201f15bcfad880f29c3b52d9f90717b1ca.tar.bz2
mpv-65792a201f15bcfad880f29c3b52d9f90717b1ca.tar.xz
Fix indentation
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25413 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/ao_pulse.c')
-rw-r--r--libao2/ao_pulse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libao2/ao_pulse.c b/libao2/ao_pulse.c
index af73a72a45..f94be77d5b 100644
--- a/libao2/ao_pulse.c
+++ b/libao2/ao_pulse.c
@@ -256,10 +256,10 @@ static void uninit(int immed) {
/** 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;
}