summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-10-20 09:04:49 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-10-20 09:04:49 +0000
commit664e119dc7d588fadda4e2290471766a53190667 (patch)
tree584ad204afd4f0f3f6effd8d08cd9a0050d48362 /regcomp.c
parent1e2e3d022b3464fbde4734646678d89865859418 (diff)
downloadperl-664e119dc7d588fadda4e2290471766a53190667.tar.gz
Silence some warnings
p4raw-id: //depot/perl@29058
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 0a5f2fd963..25dc17f620 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -907,8 +907,8 @@ S_dump_trie_interim_list(pTHX_ const struct _reg_trie_data *trie, U32 next_alloc
(UV)TRIE_LIST_ITEM(state,charid).newstate
);
if (!(charid % 10))
- PerlIO_printf( Perl_debug_log, "\n%*s| ",
- (depth * 2) + 14,"");
+ PerlIO_printf(Perl_debug_log, "\n%*s| ",
+ (int)((depth * 2) + 14), "");
}
}
PerlIO_printf( Perl_debug_log, "\n");