From 23e62f1e420c1c7cea469251b944f0c0dea4ce45 Mon Sep 17 00:00:00 2001 From: emaste Date: Sun, 12 Oct 2014 00:34:18 +0000 Subject: MFS r272922: Correct scale factor for T terabyte suffix PR: 194250 Approved by: re --- usr.bin/find/function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1