From e61ebff4067769be3e1970c4ca6bb7df5a9b069f Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Thu, 18 Feb 2010 21:06:22 +0000 Subject: [PATCH] fix some compiler warnings --- src/soundbase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soundbase.h b/src/soundbase.h index f3deeb81..8723af30 100755 --- a/src/soundbase.h +++ b/src/soundbase.h @@ -67,8 +67,8 @@ protected: // these functions should be overwritten by derived class for // non callback based audio interfaces - virtual bool Read ( CVector& psData ) { printf ( "no sound!" ); return false; } - virtual bool Write ( CVector& psData ) { printf ( "no sound!" ); return false; } + virtual bool Read ( CVector& ) { printf ( "no sound!" ); return false; } + virtual bool Write ( CVector& ) { printf ( "no sound!" ); return false; } void run(); bool bRun;