diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2004-08-31 16:07:08 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2004-08-31 16:07:08 +0000 |
commit | 461c2124bdbb201fb9004c8f4f46d2cbd45f8f84 (patch) | |
tree | 40de47fc15c7066d2bfb1c500f2e3ad6cf41f15b /ext | |
parent | 3d1a483151f9539a71acf395aaa1b33b034fc270 (diff) | |
download | gst-plugins-bad-461c2124bdbb201fb9004c8f4f46d2cbd45f8f84.tar.gz gst-plugins-bad-461c2124bdbb201fb9004c8f4f46d2cbd45f8f84.tar.bz2 gst-plugins-bad-461c2124bdbb201fb9004c8f4f46d2cbd45f8f84.zip |
added typecast to avoid warning
Original commit message from CVS:
added typecast to avoid warning
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ladspa/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ladspa/search.c b/ext/ladspa/search.c index 2d97ab10..077d87df 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); } /*****************************************************************************/ |