From: Jarkko Hietaniemi Date: Thu, 4 Jan 2001 20:46:17 +0000 (+0000) Subject: Typo in #8312 when manually applying a problematic patch fragment. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=76df47578dba2a9fdfb9999a2625aa04b4cf475a;p=p5sagit%2Fp5-mst-13.2.git Typo in #8312 when manually applying a problematic patch fragment. p4raw-id: //depot/perl@8319 --- diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 366a301..9378001 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -675,7 +675,7 @@ static char magicstr[] = "pst0"; /* Used as a magic number */ #define GETMARK(x) do { \ if (!cxt->fio) \ MBUF_GETC(x); \ -! else if ((int) (x = PerlIO_getc(cxt->fio)) == EOF) \ + else if ((int) (x = PerlIO_getc(cxt->fio)) == EOF) \ return (SV *) 0; \ } while (0)