summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-07-17 10:28:17 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:14:44 +0200
commitfea2d4dd45c691f3fd7c79144e63c0d471d37f51 (patch)
tree2a6c97613f3a2aaab919cb2594efbfce84c01f15 /configure
parenta69950df917d9dd65082f8ad68f6969bd5cce5f5 (diff)
downloadmpv-fea2d4dd45c691f3fd7c79144e63c0d471d37f51.tar.bz2
mpv-fea2d4dd45c691f3fd7c79144e63c0d471d37f51.tar.xz
configure: Fix LADSPA test variable initialization
Don't use NULL (which would required stddef.h). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31748 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ea836594e2..144eb4f6f0 100755
--- a/configure
+++ b/configure
@@ -6622,7 +6622,7 @@ if test "$_ladspa" = auto ; then
cat > $TMPC <<EOF
#include <ladspa.h>
int main(void) {
-const LADSPA_Descriptor *ld = NULL;
+LADSPA_Descriptor ld = {0};
return 0;
}
EOF