diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-09-16 23:28:30 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-09-16 23:28:30 +0000 |
commit | 6ca2ca0986cc418cfa99815323ec7b8c940ec8f2 (patch) | |
tree | f93b6ecb46318917e7d7fceeea8973c732b311ad /perl.h | |
parent | e8cb70bb74c0399a7c1f0b0d366b97c6ae998ec3 (diff) | |
download | perl-6ca2ca0986cc418cfa99815323ec7b8c940ec8f2.tar.gz |
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
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4425,7 +4425,7 @@ EXTCONST char PL_bincompat_options[] = # ifdef USE_SOCKS " USE_SOCKS" # endif - ; + ""; #else EXTCONST char PL_bincompat_options[]; #endif |