diff options
author | Steve Hay <SteveHay@planit.com> | 2006-02-28 12:40:06 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-02-28 12:40:06 +0000 |
commit | ea4714379ce5a42a9cc53a3224832e503c01446e (patch) | |
tree | 049980e145ca5b21cf6cc01fdf933c804c8407a3 /sv.c | |
parent | 489f7bfe41fb498ba4c330a8e2d69a1ae40ff4df (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |