changeset 23593:1bb33276e2de

Fix r23353, it broke ao_sun on non-BSD due to accidentially removing a return ao_data.outburst;
author reimar
date Sat, 23 Jun 2007 18:16:14 +0000
parents 76bed8202233
children 3b8a51c14922
files libao2/ao_sun.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/ao_sun.c	Sat Jun 23 17:39:27 2007 +0000
+++ b/libao2/ao_sun.c	Sat Jun 23 18:16:14 2007 +0000
@@ -655,6 +655,7 @@
 #if !defined (__OpenBSD__) && !defined(__NetBSD__)
     if (queued_bursts - info.play.eof > 2)
 	return 0;
+    return ao_data.outburst;
 #else
     return info.hiwat * info.blocksize - info.play.seek;
 #endif