diff options
author | Nicholas Clark <nick@ccl4.org> | 2002-12-26 21:16:27 +0000 |
---|---|---|
committer | hv <hv@crypt.org> | 2003-01-07 09:20:22 +0000 |
commit | 35c1215df9ec9cb54402afdda4ed360fdbf58539 (patch) | |
tree | 428c7477ff36d5e64082475edd727fed8e983bb8 /universal.c | |
parent | 6e6ef6b23f1f2cc3827f9559a7259c79757c4116 (diff) | |
download | perl-35c1215df9ec9cb54402afdda4ed360fdbf58539.tar.gz |
%_ (was Re: [PATCH] operation on `PL_na' may be undefined)
Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@18456
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/universal.c b/universal.c index 9764ee4c73..7999757f28 100644 --- a/universal.c +++ b/universal.c @@ -94,8 +94,8 @@ S_isa_lookup(pTHX_ HV *stash, const char *name, HV* name_stash, if (!basestash) { if (ckWARN(WARN_MISC)) Perl_warner(aTHX_ packWARN(WARN_SYNTAX), - "Can't locate package %s for @%s::ISA", - SvPVX(sv), HvNAME(stash)); + "Can't locate package %"SVf" for @%s::ISA", + sv, HvNAME(stash)); continue; } if (&PL_sv_yes == isa_lookup(basestash, name, name_stash, |