diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-03 15:18:18 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-03 15:18:18 +0000 |
commit | 157e3fc8c802010d855ef1c01ff62a891bb5e20d (patch) | |
tree | 0d2b4d803cdb7e72337598b15fd3e0a5087de8e0 /universal.c | |
parent | 083639a9a1e6ddf46741c03c887e509293dde4c0 (diff) | |
download | perl-157e3fc8c802010d855ef1c01ff62a891bb5e20d.tar.gz |
Fix file where internal XS functions are defined
p4raw-id: //depot/perl@27064
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 097247b5f1..2afa2f68a1 100644 --- a/universal.c +++ b/universal.c @@ -207,7 +207,7 @@ void Perl_boot_core_UNIVERSAL(pTHX) { dVAR; - const char file[] = __FILE__; + static const char file[] = __FILE__; newXS("UNIVERSAL::isa", XS_UNIVERSAL_isa, file); newXS("UNIVERSAL::can", XS_UNIVERSAL_can, file); |