summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-02-28 12:40:06 +0000
committerSteve Hay <SteveHay@planit.com>2006-02-28 12:40:06 +0000
commitea4714379ce5a42a9cc53a3224832e503c01446e (patch)
tree049980e145ca5b21cf6cc01fdf933c804c8407a3 /sv.c
parent489f7bfe41fb498ba4c330a8e2d69a1ae40ff4df (diff)
downloadperl-ea4714379ce5a42a9cc53a3224832e503c01446e.tar.gz
Silence a VC++ warning with DEBUGGING builds
(signed/unsigned mismatch) p4raw-id: //depot/perl@27351
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 44cb50ae76..a7aa81c8d6 100644
--- a/sv.c
+++ b/sv.c
@@ -1081,7 +1081,7 @@ S_more_bodies (pTHX_ svtype sv_type)
#ifdef DEBUGGING
if (!done_sanity_check) {
- int i = SVt_LAST;
+ unsigned int i = SVt_LAST;
done_sanity_check = TRUE;