summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2004-08-31 16:07:08 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2004-08-31 16:07:08 +0000
commit461c2124bdbb201fb9004c8f4f46d2cbd45f8f84 (patch)
tree40de47fc15c7066d2bfb1c500f2e3ad6cf41f15b /ext
parent3d1a483151f9539a71acf395aaa1b33b034fc270 (diff)
downloadgst-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.c2
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);
}
/*****************************************************************************/