mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 17:52:43 +00:00
MFC r272762: Correct scale factor for T terabyte suffix
PR: 194250
This commit is contained in:
parent
4a2edcd8c2
commit
0e8cb2cda7
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=272922
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user