changeset 31682:d4ea2e6111aa

Fix LADSPA test variable initialization so it actually works (without stddef.h).
author diego
date Sat, 17 Jul 2010 10:28:17 +0000
parents 7e7c541566ad
children db0b49579eeb
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Jul 17 09:19:39 2010 +0000
+++ b/configure	Sat Jul 17 10:28:17 2010 +0000
@@ -6994,7 +6994,7 @@
   cat > $TMPC <<EOF
 #include <ladspa.h>
 int main(void) {
-const LADSPA_Descriptor *ld = NULL;
+LADSPA_Descriptor ld = {0};
 return 0;
 }
 EOF