From: Yitzchak Scott-Thoennes Date: Mon, 28 Jan 2008 13:39:29 +0000 (-0800) Subject: mistaken variable in pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a0604b4cdf35e86e96dd5002c652cb32430e1735;p=p5sagit%2Fp5-mst-13.2.git mistaken variable in pod From: "Yitzchak Scott-Thoennes" Message-ID: <40783.64.81.167.122.1201556369.squirrel@webmail.efn.org> p4raw-id: //depot/perl@33101 --- diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index cd42f08..bb3ee3a 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -1648,7 +1648,7 @@ calling C. $fd = POSIX::open( "foo", &POSIX::O_WRONLY ); $buf = "hello"; - $bytes = POSIX::write( $b, $buf, 5 ); + $bytes = POSIX::write( $fd, $buf, 5 ); Returns C on failure.