Change 33261 by [EMAIL PROTECTED] on 2008/02/08 21:55:48
Remove an unneeded if statement.
Affected files ...
... //depot/perl/perlio.c#378 edit
Differences ...
==== //depot/perl/perlio.c#378 (text) ====
Index: perl/perlio.c
--- perl/perlio.c#377~33248~ 2008-02-08 03:04:23.000000000 -0800
+++ perl/perlio.c 2008-02-08 13:55:48.000000000 -0800
@@ -3400,9 +3400,7 @@
#ifdef STDIO_PTR_LVALUE
PerlSIO_set_ptr(stdio, ptr); /* LHS STDCHAR* cast non-portable */
#ifdef STDIO_PTR_LVAL_SETS_CNT
- if (PerlSIO_get_cnt(stdio) != (cnt)) {
- assert(PerlSIO_get_cnt(stdio) == (cnt));
- }
+ assert(PerlSIO_get_cnt(stdio) == (cnt));
#endif
#if (!defined(STDIO_PTR_LVAL_NOCHANGE_CNT))
/*
End of Patch.