util.c: Silence compiler warning
authorKarl Williamson <public@khwilliamson.com>
Sun, 8 Jan 2012 17:23:45 +0000 (10:23 -0700)
committerKarl Williamson <public@khwilliamson.com>
Fri, 13 Jan 2012 16:58:40 +0000 (09:58 -0700)
cc on solaris is smart enough to figure out that this return isn't
reached.

util.c

diff --git a/util.c b/util.c
index 9d7683d..a6c0590 100644 (file)
--- a/util.c
+++ b/util.c
@@ -5859,6 +5859,7 @@ Perl_stashpv_hvname_match(pTHX_ const COP *c, const HV *hv)
     else
         return (stashpv == name
                     || strEQ(stashpv, name));
+    /*NOTREACHED*/
     return FALSE;
 }
 #endif