# HG changeset patch # User diego # Date 1279362497 0 # Node ID d4ea2e6111aab62bd549a9b95564dae6c1d5f38a # Parent 7e7c541566ad7b84ecd448d1dc3c60047ab7e224 Fix LADSPA test variable initialization so it actually works (without stddef.h). diff -r 7e7c541566ad -r d4ea2e6111aa configure --- 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 < int main(void) { -const LADSPA_Descriptor *ld = NULL; +LADSPA_Descriptor ld = {0}; return 0; } EOF