From 0e8cb2cda7755bc42fe9b8bb25da1d716f3bb3fa Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Sat, 11 Oct 2014 00:30:57 +0000 Subject: [PATCH] MFC r272762: Correct scale factor for T terabyte suffix PR: 194250 --- 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 6bc087d10a5b..49ba85011fd8 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;