projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
7cc6787
)
[perl #115756] Fix XS::APItest::SvIsCOW
author
Father Chrysostomos <sprout@cpan.org>
Sat, 17 Nov 2012 19:01:42 +0000 (11:01 -0800)
committer
Father Chrysostomos <sprout@cpan.org>
Sat, 17 Nov 2012 21:49:08 +0000 (13:49 -0800)
SvIsCOW returns a flag which will turn into 0 if truncated to 8 bits.
ext/XS-APItest/APItest.xs
patch
|
blob
|
blame
|
history
diff --git
a/ext/XS-APItest/APItest.xs
b/ext/XS-APItest/APItest.xs
index
a8ce71d
..
8d5b312
100644
(file)
--- a/
ext/XS-APItest/APItest.xs
+++ b/
ext/XS-APItest/APItest.xs
@@
-3262,7
+3262,7
@@
CODE:
OUTPUT:
RETVAL
-bool
+U32
SvIsCOW(SV *sv)
CODE:
RETVAL = SvIsCOW(sv);