projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
489f7bf
)
Silence a VC++ warning with DEBUGGING builds
Steve Hay [Tue, 28 Feb 2006 12:40:06 +0000 (12:40 +0000)]
(signed/unsigned mismatch)
p4raw-id: //depot/perl@27351
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
44cb50a
..
a7aa81c
100644
(file)
--- 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;