diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-06 19:23:06 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-06 19:23:06 +0000 |
commit | 814be5ecf8044419edadf89655a17d25a50e2bf8 (patch) | |
tree | 441eb4c139c118d109a46c23ef6b62ad744408ac /scope.c | |
parent | 7eb7299bf1b986225e6127e2dcd2a5a96c7b49cb (diff) | |
download | perl-814be5ecf8044419edadf89655a17d25a50e2bf8.tar.gz |
rename s/\bSI_/PERLSI_/ to avoid collisions with sysinfo headers
p4raw-id: //depot/perl@1339
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ new_stackinfo(I32 stitems, I32 cxitems) si->si_next = 0; si->si_cxmax = cxitems - 1; si->si_cxix = -1; - si->si_type = SI_UNDEF; + si->si_type = PERLSI_UNDEF; New(56, si->si_cxstack, cxitems, PERL_CONTEXT); return si; } |