stat.2: Fix EOVERFLOW error description

2<<31 should read 1<<31 (which equals 2^31).

Reported-by: Emil Mikulic <emikulic@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2010-11-25 06:31:12 +01:00
parent ea03a3acf0
commit 4d69ed2e0d
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ This can occur when an application compiled on a 32-bit platform without
calls
.BR stat ()
on a file whose size exceeds
.I (2<<31)-1
.I (1<<31)-1
bits.
.SH "CONFORMING TO"
These system calls conform to SVr4, 4.3BSD, POSIX.1-2001.