From: Father Chrysostomos Date: Sun, 15 Sep 2013 18:31:39 +0000 (-0700) Subject: sv.h: Make BmUSEFUL the same type on debug/non-debug builds X-Git-Tag: upstream/5.20.0~1842 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50c7be83932fffb593f45edf5e5fde386fc0de6b;p=platform%2Fupstream%2Fperl.git sv.h: Make BmUSEFUL the same type on debug/non-debug builds 408dc2ec1c7 made in an IV (signed) on debugging builds but a UV (unsigned) on regular builds. --- diff --git a/sv.h b/sv.h index dd015d7..a089d7d 100644 --- a/sv.h +++ b/sv.h @@ -1396,7 +1396,7 @@ sv_force_normal does nothing. &(((XPVIV*) SvANY(_bmuseful))->xiv_u.xivu_iv); \ })) #else -# define BmUSEFUL(sv) ((XPVIV*) SvANY(sv))->xiv_u.xivu_uv +# define BmUSEFUL(sv) ((XPVIV*) SvANY(sv))->xiv_u.xivu_iv #endif