diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-23 18:24:22 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-23 18:24:22 +0000 |
commit | 51a342b88a4e022f4c08669633293fb7dc4ab0f1 (patch) | |
tree | 6eb5a0ecdaf27935e4269443416217b734265d81 /src/xine-utils/ring_buffer.c | |
parent | 5ba0560dad4cc01ec8560dcf41d2395357b3063b (diff) | |
download | xine-lib-51a342b88a4e022f4c08669633293fb7dc4ab0f1.tar.gz xine-lib-51a342b88a4e022f4c08669633293fb7dc4ab0f1.tar.bz2 |
Miscellaneous static/const fixups.
Optimise away _xine_buffer_strcat.
CVS patchset: 8073
CVS date: 2006/06/23 18:24:22
Diffstat (limited to 'src/xine-utils/ring_buffer.c')
-rw-r--r-- | src/xine-utils/ring_buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/ring_buffer.c b/src/xine-utils/ring_buffer.c index a98e1f261..dbad685d1 100644 --- a/src/xine-utils/ring_buffer.c +++ b/src/xine-utils/ring_buffer.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: ring_buffer.c,v 1.3 2006/04/05 22:12:20 valtri Exp $ + * $Id: ring_buffer.c,v 1.4 2006/06/23 18:24:22 dsalt Exp $ * */ #ifdef HAVE_CONFIG_H @@ -138,7 +138,7 @@ void xine_ring_buffer_delete(xine_ring_buffer_t *ring_buffer) { free (ring_buffer); } -static void xine_ring_buffer_display_stat(xine_ring_buffer_t *ring_buffer) { +static void xine_ring_buffer_display_stat(const xine_ring_buffer_t *ring_buffer) { #if DEBUG_RING_BUFFER size_t free_size, full_size; |