From: Nicholas Clark Date: Sun, 16 Sep 2007 23:28:30 +0000 (+0000) Subject: Change 31873 was not robust against the possibility that the X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a68dd89ee0d217791511611b345d66d66485f8b4;p=p5sagit%2Fp5-mst-13.2.git Change 31873 was not robust against the possibility that the configuration has no #defined options. So add a "" that will make the initialiser for PL_bincompat_options syntactically correct in this case. p4raw-id: //depot/perl@31876 --- diff --git a/perl.h b/perl.h index f4a7f6e..f05a7ca 100644 --- a/perl.h +++ b/perl.h @@ -4425,7 +4425,7 @@ EXTCONST char PL_bincompat_options[] = # ifdef USE_SOCKS " USE_SOCKS" # endif - ; + ""; #else EXTCONST char PL_bincompat_options[]; #endif