summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2000-11-30 14:27:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-30 16:17:02 +0000
commit4659c93fd71d46dcfe5376e8f72bace4634ccd6c (patch)
treeea473e9223de380e7c336c925533cdae20a9f81a /toke.c
parent84bf2719b288d48df3cb5c54d381f5808f11a00f (diff)
downloadperl-4659c93fd71d46dcfe5376e8f72bace4634ccd6c.tar.gz
toke.c perlio.c -Wformat nits
Message-Id: <200011301427.OAA00030@tempest.npl.co.uk> p4raw-id: //depot/perl@7935
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index 1290c69a07..90b5ad5745 100644
--- a/toke.c
+++ b/toke.c
@@ -2256,8 +2256,8 @@ Perl_yylex(pTHX)
PL_lex_defer = LEX_NORMAL;
}
DEBUG_T({ PerlIO_printf(Perl_debug_log,
- "### Next token after '%s' was known, type %i\n", PL_bufptr,
- PL_nexttype[PL_nexttoke]); })
+ "### Next token after '%s' was known, type %"IVdf"\n", PL_bufptr,
+ (IV)PL_nexttype[PL_nexttoke]); })
return(PL_nexttype[PL_nexttoke]);