]> git.eshelyaron.com Git - emacs.git/commitdiff
(doprnt): Fix typo in error message.
authorRichard M. Stallman <rms@gnu.org>
Sun, 27 Aug 1995 23:53:06 +0000 (23:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 27 Aug 1995 23:53:06 +0000 (23:53 +0000)
src/doprnt.c

index 6db0eda15147111351385c9622a5ce20a96c5b15..99e10c0730cae8e9a101dd4e6c0772b0f0d3c245 100644 (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)