Correct scale factor for T terabyte suffix

PR:		194250
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2014-10-08 17:40:58 +00:00
parent 07a92f34d6
commit 599df3ef01
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=272762

View File

@ -1506,7 +1506,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;