From: <rl...@us...> - 2006-05-30 22:21:12
|
Revision: 16209 Author: rlaager Date: 2006-05-30 15:21:00 -0700 (Tue, 30 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16209&view=rev Log Message: ----------- SimGuy pointed out that the gaim_debug functions take format strings. Modified Paths: -------------- trunk/src/gtksound.c Modified: trunk/src/gtksound.c =================================================================== --- trunk/src/gtksound.c 2006-05-30 19:42:16 UTC (rev 16208) +++ trunk/src/gtksound.c 2006-05-30 22:21:00 UTC (rev 16209) @@ -393,9 +393,7 @@ } if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { - char *tmp = g_strdup_printf("sound file (%s) does not exist.\n", filename); - gaim_debug_error("gtksound", tmp); - g_free(tmp); + gaim_debug_error("gtksound", "sound file (%s) does not exist.\n", filename); return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |