MFC r272762: Correct scale factor for T terabyte suffix

PR:		194250
This commit is contained in:
Ed Maste 2014-10-11 00:30:57 +00:00
parent 4a2edcd8c2
commit 0e8cb2cda7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=272922

View File

@ -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;