diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-23 08:04:21 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-23 08:04:21 +0000 |
commit | 89e33a0587050e7ef2e88ba45c87444d8506f821 (patch) | |
tree | 182d8f7b9d9569489da77a1af3c03dd8263d99f8 /toke.c | |
parent | 2ddb8a4f4f1b3a40180e5c6cbdedb1603f75421c (diff) | |
download | perl-89e33a0587050e7ef2e88ba45c87444d8506f821.tar.gz |
Silence another bcc32 compiler warning
("Possible use of '%s' before definition")
p4raw-id: //depot/perl@24944
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8953,7 +8953,7 @@ S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, SV *sv, SV *pv, SV *res; SV **cvp; SV *cv, *typesv; - const char *why1, *why2, *why3; + const char *why1 = "", *why2 = "", *why3 = ""; if (!table || !(PL_hints & HINT_LOCALIZE_HH)) { SV *msg; |