bleed - silence warning in sv.c
Philip M. Gollucci [Mon, 18 Sep 2006 01:30:05 +0000 (18:30 -0700)]
From: "Philip M. Gollucci" <pgollucci@p6m7g8.com>
Message-ID: <450E590D.1060205@p6m7g8.com>

p4raw-id: //depot/perl@28865

sv.c

diff --git a/sv.c b/sv.c
index c82f2d6..6e395ef 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -3477,7 +3477,7 @@ Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
     case SVt_PVBM:
        if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
            mg_get(sstr);
-           if ((int)SvTYPE(sstr) != stype) {
+           if (SvTYPE(sstr) != stype) {
                stype = SvTYPE(sstr);
                if (stype == SVt_PVGV && dtype <= SVt_PVGV) {
                    glob_assign_glob(dstr, sstr, dtype);