Commit a8b92b60 authored by Peter Eisentraut's avatar Peter Eisentraut

PL/Perl: Avoid compiler warning from clang

Use SvREFCNT_inc_simple_void() instead of SvREFCNT_inc() to avoid
warning about unused return value.
parent 4498a340
...@@ -64,7 +64,7 @@ sv2cstr(SV *sv) ...@@ -64,7 +64,7 @@ sv2cstr(SV *sv)
else else
/* increase the reference count so we can just SvREFCNT_dec() it when /* increase the reference count so we can just SvREFCNT_dec() it when
* we are done */ * we are done */
SvREFCNT_inc(sv); SvREFCNT_inc_simple_void(sv);
val = SvPVutf8(sv, len); val = SvPVutf8(sv, len);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment