projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ad17a1a
)
Fix a typo in an assert(). It helps to compile with -DDEBUGGING
Nicholas Clark [Fri, 3 Dec 2004 17:02:43 +0000 (17:02 +0000)]
p4raw-id: //depot/perl@23603
perl.c
patch
|
blob
|
blame
|
history
diff --git
a/perl.c
b/perl.c
index
d0a1401
..
e10fe78
100644
(file)
--- a/
perl.c
+++ b/
perl.c
@@
-4413,7
+4413,7
@@
S_incpush(pTHX_ char *p, int addsubdirs, int addoldvers, int usesep)
av_push(GvAVn(PL_incgv), libdir);
}
if (subdir) {
- assert (SvREFCNT(subdr) == 1);
+ assert (SvREFCNT(subdir) == 1);
SvREFCNT_dec(subdir);
}
}