From: Richard M. Stallman Date: Sun, 27 Aug 1995 23:53:06 +0000 (+0000) Subject: (doprnt): Fix typo in error message. X-Git-Tag: emacs-19.34~2901 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf1f6e77a1acd0aed9fa0cc9227e8201d1e0bbf3;p=emacs.git (doprnt): Fix typo in error message. --- diff --git a/src/doprnt.c b/src/doprnt.c index 6db0eda1514..99e10c0730c 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -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)