From: Jarkko Hietaniemi Date: Fri, 13 Jul 2001 00:05:53 +0000 (+0000) Subject: Paging for Dr Octothorpe. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=434f716607831e7b291d6f6bb7fb9611e6d0f7ca;p=p5sagit%2Fp5-mst-13.2.git Paging for Dr Octothorpe. p4raw-id: //depot/perl@11341 --- diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index d210e28..2c992f2 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -74,7 +74,7 @@ Note the mistake in the first line was specifying the decimal literal 644, rather than the intended octal literal 0644. The problem can be seen with: - printf("%o",644); # prints 01204 + printf("%#o",644); # prints 01204 Surely you had not intended C - did you? If you want to use numeric literals as arguments to chmod() et al. then please