From 50c7be83932fffb593f45edf5e5fde386fc0de6b Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sun, 15 Sep 2013 11:31:39 -0700 Subject: [PATCH] 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. --- sv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4