MFC r205119 and r206056:

Prevent the SIZE field being corrupted when a process allocates more than
2TB.

PR:	bin/129706
Submitted by:	brucec
Approved by: 	rrs (mentor)
This commit is contained in:
Rebecca Cran 2010-04-20 20:19:19 +00:00
parent 66e29ee3f5
commit 8bce49fc33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=206911
2 changed files with 2 additions and 2 deletions

View File

@ -476,7 +476,7 @@ int amt;
char *format_k2(amt)
int amt;
unsigned long long amt;
{
static char retarray[NUM_STRINGS][16];

View File

@ -21,4 +21,4 @@ long percentages();
char *errmsg();
char *format_time();
char *format_k();
char *format_k2();
char *format_k2(unsigned long long);