diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2012-10-10 13:56:36 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2012-10-10 13:56:36 +0100 |
commit | 7a6ecb12de21933069838b75dfe0ea46da9df7f9 (patch) | |
tree | 2680ecfe3ea41d59f654e8082b3d6179ed715ad3 /universal.c | |
parent | b75e117712b47a046f3987d893670a647a51688a (diff) | |
download | perl-7a6ecb12de21933069838b75dfe0ea46da9df7f9.tar.gz |
Fix VC compilation of universal.c as C++ following commit 613875e219
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/universal.c b/universal.c index e71745968c..9f632eee3e 100644 --- a/universal.c +++ b/universal.c @@ -1415,7 +1415,7 @@ Perl_boot_core_UNIVERSAL(pTHX) { dVAR; static const char file[] = __FILE__; - struct xsub_details *xsub = details; + const struct xsub_details *xsub = details; const struct xsub_details *end = details + sizeof(details) / sizeof(details[0]); |