Change 33296 by [EMAIL PROTECTED] on 2008/02/13 10:03:43
Subject: [PATCH] Unused var in perlio.c (revised)
From: "Jerry D. Hedden" <[EMAIL PROTECTED]>
Date: Tue, 12 Feb 2008 10:00:18 -0500
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/perlio.c#380 edit
Differences ...
==== //depot/perl/perlio.c#380 (text) ====
Index: perl/perlio.c
--- perl/perlio.c#379~33291~ 2008-02-12 05:15:20.000000000 -0800
+++ perl/perlio.c 2008-02-13 02:03:43.000000000 -0800
@@ -4103,6 +4103,9 @@
PerlIOBuf_set_ptrcnt(pTHX_ PerlIO *f, STDCHAR * ptr, SSize_t cnt)
{
PerlIOBuf * const b = PerlIOSelf(f, PerlIOBuf);
+#ifndef DEBUGGING
+ PERL_UNUSED_ARG(cnt);
+#endif
if (!b->buf)
PerlIO_get_base(f);
b->ptr = ptr;
End of Patch.