Change 33101 by [EMAIL PROTECTED] on 2008/01/29 09:43:58

        Subject: [PATCH] mistaken variable in pod
        From: "Yitzchak Scott-Thoennes" <[EMAIL PROTECTED]>
        Date: Mon, 28 Jan 2008 13:39:29 -0800 (PST)
        Message-ID: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/ext/POSIX/POSIX.pod#50 edit

Differences ...

==== //depot/perl/ext/POSIX/POSIX.pod#50 (text) ====
Index: perl/ext/POSIX/POSIX.pod
--- perl/ext/POSIX/POSIX.pod#49~31137~  2007-05-04 06:21:53.000000000 -0700
+++ perl/ext/POSIX/POSIX.pod    2008-01-29 01:43:58.000000000 -0800
@@ -1648,7 +1648,7 @@
 
        $fd = POSIX::open( "foo", &POSIX::O_WRONLY );
        $buf = "hello";
-       $bytes = POSIX::write( $b, $buf, 5 );
+       $bytes = POSIX::write( $fd, $buf, 5 );
 
 Returns C<undef> on failure.
 
End of Patch.

Reply via email to