mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
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:
parent
e2b31bddcc
commit
f51bdbda82
7 changed files with 13 additions and 11 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue