From 461c2124bdbb201fb9004c8f4f46d2cbd45f8f84 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 31 Aug 2004 16:07:08 +0000 Subject: [PATCH] added typecast to avoid warning Original commit message from CVS: added typecast to avoid warning --- ext/ladspa/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/ladspa/search.c b/ext/ladspa/search.c index 2d97ab1..077d87d 100644 --- a/ext/ladspa/search.c +++ b/ext/ladspa/search.c @@ -131,7 +131,7 @@ LADSPAPluginSearch (LADSPAPluginSearchCallbackFunction fCallbackFunction) if (*pcStart == ':') pcStart++; } - g_free (pcLADSPAPath); + g_free ((gpointer) pcLADSPAPath); } /*****************************************************************************/ -- 2.7.4