[Toxine-cvs] CVS: toxine/src main.c,1.44,1.45
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2005-08-21 08:23:40
|
Update of /cvsroot/toxine/toxine/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7654 Modified Files: main.c Log Message: gcc 4 compliant patch from Diego 'Flameeyes' Pettenò <flameeyes AT gentoo DOT org> Index: main.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/main.c,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- main.c 19 Jul 2004 10:01:45 -0000 1.44 +++ main.c 21 Aug 2005 08:23:31 -0000 1.45 @@ -255,8 +255,8 @@ } toxine_free(tox->configfile); - toxine_free((char *)tox->video.name); - toxine_free((char *)tox->audio.name); + free((char *)tox->video.name); + free((char *)tox->audio.name); toxine_command_free_commands(tox->command.current); // toxine_free(tox->last_result); |