From 04ea0d71925c14f08bd87ba7407fb2edb137e4eb Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Mon, 15 Aug 2005 11:49:47 +0000 Subject: [PATCH] fix signedness-warning for ao_play git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@978 423420c4-83ab-492f-b58f-81f9feb106b5 --- rdpsnd_libao.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdpsnd_libao.c b/rdpsnd_libao.c index ec06b34..2509815 100644 --- a/rdpsnd_libao.c +++ b/rdpsnd_libao.c @@ -240,7 +240,7 @@ wave_out_play(void) out->p += len; } - ao_play(o_device, outbuf, len); + ao_play(o_device, (char*)outbuf, len); gettimeofday(&tv, NULL);