summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-09-23 19:12:58 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-09-23 19:12:58 +0000
commit17ad61e03fe30671fca57305b7cdb9cef95a1b94 (patch)
treeb33d275f3ab06e5cefe99a55115e8dec34197bf5 /toke.c
parent07e5c30417000e6240216c24979f90d5e61909b3 (diff)
downloadperl-17ad61e03fe30671fca57305b7cdb9cef95a1b94.tar.gz
Minor nit in a debug message of the tokenizer.
p4raw-id: //depot/perl@21342
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 c19ee09ddb..0b934c1a79 100644
--- a/toke.c
+++ b/toke.c
@@ -2875,8 +2875,8 @@ Perl_yylex(pTHX)
/* Assume it was a minus followed by a one-letter named
* subroutine call (or a -bareword), then. */
DEBUG_T( { PerlIO_printf(Perl_debug_log,
- "### %c looked like a file test but was not\n",
- (int)ftst);
+ "### '-%c' looked like a file test but was not\n",
+ tmp);
} );
s -= 2;
}