This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad17a1a
)
Fix a typo in an assert(). It helps to compile with -DDEBUGGING
author
Nicholas Clark
<nick@ccl4.org>
Fri, 3 Dec 2004 17:02:43 +0000
(17:02 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
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(subd
i
r) == 1);
SvREFCNT_dec(subdir);
}
}