summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorChip Salzenberg <chip@perl.com>1997-04-09 00:00:00 +0000
committerChip Salzenberg <chip@atlantic.net>1997-04-09 00:00:00 +0000
commitba6d6ac996755f455b4d1475ebba4d130f850f9a (patch)
treebcc98d89bd65b95bb54ecee5784c87c235344ada /toke.c
parent78ec65c7656b24d386e37c2e5cf28db6ca67b5d1 (diff)
downloadperl-ba6d6ac996755f455b4d1475ebba4d130f850f9a.tar.gz
Minor type cleanup
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/toke.c b/toke.c
index 6a306eca9f..df14f107e6 100644
--- a/toke.c
+++ b/toke.c
@@ -1688,9 +1688,9 @@ yylex()
croak("Can't exec %s", ipath);
}
if (d) {
- int oldpdb = perldb;
- int oldn = minus_n;
- int oldp = minus_p;
+ U32 oldpdb = perldb;
+ bool oldn = minus_n;
+ bool oldp = minus_p;
while (*d && !isSPACE(*d)) d++;
while (*d == ' ' || *d == '\t') d++;
@@ -5139,12 +5139,12 @@ set_csh()
#endif
}
-int
+I32
start_subparse(is_format, flags)
I32 is_format;
U32 flags;
{
- int oldsavestack_ix = savestack_ix;
+ I32 oldsavestack_ix = savestack_ix;
CV* outsidecv = compcv;
AV* comppadlist;