Author: emaste Date: Sun Oct 12 00:34:18 2014 New Revision: 272975 URL: https://svnweb.freebsd.org/changeset/base/272975
Log: MFS r272922: Correct scale factor for T terabyte suffix PR: 194250 Approved by: re Modified: releng/10.1/usr.bin/find/function.c Directory Properties: releng/10.1/ (props changed) Modified: releng/10.1/usr.bin/find/function.c ============================================================================== --- releng/10.1/usr.bin/find/function.c Sat Oct 11 23:49:27 2014 (r272974) +++ releng/10.1/usr.bin/find/function.c Sun Oct 12 00:34:18 2014 (r272975) @@ -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; _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"