Change 27988 by [EMAIL PROTECTED] on 2006/04/28 07:58:16
Fix typo in function call
Affected files ...
... //depot/perl/perlio.c#319 edit
Differences ...
==== //depot/perl/perlio.c#319 (text) ====
Index: perl/perlio.c
--- perl/perlio.c#318~27987~ 2006-04-27 19:12:03.000000000 -0700
+++ perl/perlio.c 2006-04-28 00:58:16.000000000 -0700
@@ -476,7 +476,7 @@
char buffer[1024];
const STRLEN len = my_sprintf(buffer, "%.40s:%" IVdf " ", s ? s :
"(none)", (IV) CopLINE(PL_curcop));
# ifdef USE_VSNPRINTF
- const STRLEN len2 = vnsprintf(buffer+len, sizeof(buffer) - len, fmt,
ap);
+ const STRLEN len2 = vsnprintf(buffer+len, sizeof(buffer) - len, fmt,
ap);
# else
const STRLEN len2 = vsprintf(buffer+len, fmt, ap);
# endif /* USE_VSNPRINTF */
End of Patch.