(doprnt): Fix typo in error message.

This commit is contained in:
Richard M. Stallman
1995-08-27 23:53:06 +00:00
parent ecb2a4680f
commit bf1f6e77a1

View File

@@ -105,7 +105,7 @@ doprnt (buffer, bufsize, format, format_end, nargs, args)
size_bound += 50;
if (size_bound > (unsigned) (1 << (INTBITS - 1)))
error ("Format padding to large");
error ("Format padding too large");
/* Make sure we have that much. */
if (size_bound > size_allocated)