makedefs.c comment typo

This commit is contained in:
PatR
2021-12-29 03:16:31 -08:00
parent bc9cb7f7b8
commit 3536ede5bd

View File

@@ -2237,7 +2237,7 @@ fgetline(FILE *fd)
[this was much simpler (and possibly slightly more efficient)
with realloc() but less safe because return values from malloc()
and realloc() were not being checked for Null, and efficiency is
a red herring because growing the buffer will be extremely rate] */
a red herring because growing the buffer will be extremely rare] */
newlen = len + (unsigned) inc;
cprime = (char *) alloc(newlen);
(void) memcpy(cprime, c, len);