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 | a68dd89ee0d217791511611b345d66d66485f8b4 (patch) | |
tree | f93b6ecb46318917e7d7fceeea8973c732b311ad /perl.h | |
parent | 08a3f4a9aebf0e95afafdb0217fa2977410366cf (diff) | |
download | perl-a68dd89ee0d217791511611b345d66d66485f8b4.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 |