From: Rafael Garcia-Suarez Date: Mon, 15 Mar 2004 21:54:56 +0000 (+0000) Subject: Fix the order of arguments in the usage message of X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=48065a2c562eee74d279c295da588acd3e77b931;p=p5sagit%2Fp5-mst-13.2.git Fix the order of arguments in the usage message of POSIX::chown(). It's different from the POSIX order but it's the same than CORE::chown(). Damn. p4raw-id: //depot/perl@22502 --- diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm index b6b8934..08a6f74 100644 --- a/ext/POSIX/POSIX.pm +++ b/ext/POSIX/POSIX.pm @@ -623,7 +623,7 @@ sub chdir { } sub chown { - usage "chown(filename, uid, gid)" if @_ != 3; + usage "chown(uid, gid, filename)" if @_ != 3; CORE::chown($_[0], $_[1], $_[2]); }