diff options
author | emaste <emaste@FreeBSD.org> | 2014-10-12 00:34:18 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-10-12 00:34:18 +0000 |
commit | 23e62f1e420c1c7cea469251b944f0c0dea4ce45 (patch) | |
tree | 10b907a55a6ff945ba461bb1e1fdc51b381c945f | |
parent | d65f3b4cdc6eb6213d4faa0942e217c7b8b29e06 (diff) | |
download | FreeBSD-src-23e62f1e420c1c7cea469251b944f0c0dea4ce45.zip FreeBSD-src-23e62f1e420c1c7cea469251b944f0c0dea4ce45.tar.gz |
MFS r272922: Correct scale factor for T terabyte suffix
PR: 194250
Approved by: re
-rw-r--r-- | usr.bin/find/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index 6bc087d..49ba850 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -1500,7 +1500,7 @@ c_size(OPTION *option, char ***argvp) scale = 0x40000000LL; break; case 'T': /* terabytes 1<<40 */ - scale = 0x1000000000LL; + scale = 0x10000000000LL; break; case 'P': /* petabytes 1<<50 */ scale = 0x4000000000000LL; |