Killed unnecessary \r.

This commit is contained in:
David Greenman 1995-09-07 21:11:34 +00:00
parent 3a5a6263e3
commit dd4e7c343b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10607

View File

@ -43,7 +43,7 @@ malloc(nbytes, junk1, junk2) /* junk? not used */
unsigned char *p = storage;
storage += nbytes;
if (storage >= (unsigned char *) 0xa0000) {
putstr("warning: malloc wrapped\n\r");
putstr("warning: malloc wrapped\n");
p = (unsigned char *) 0x50000;
storage = p + nbytes;
}