Fixed compiler-warnings for gcc-4... mostly type-checking

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@90 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Mark Janssen 2006-02-06 11:36:53 +00:00
parent e2b31bddcc
commit f51bdbda82
7 changed files with 13 additions and 11 deletions

View file

@ -33,7 +33,7 @@ void message( char *s, ... )
char buf[1024];
va_start( ap, s );
vsnprintf( buf, sizeof( buf ), s, ap );
vsnprintf( (char *)buf, sizeof( buf ), s, ap );
va_end( ap );
if ( i_am_daemon )