aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-27 23:53:06 +0000
committerRichard M. Stallman1995-08-27 23:53:06 +0000
commitbf1f6e77a1acd0aed9fa0cc9227e8201d1e0bbf3 (patch)
tree8eb69d16a7a4b0d3dd22e5b446ab551b6461bc40 /src
parentecb2a4680fbfebaf7b076126ba2eeb1b459702cd (diff)
downloademacs-bf1f6e77a1acd0aed9fa0cc9227e8201d1e0bbf3.tar.gz
emacs-bf1f6e77a1acd0aed9fa0cc9227e8201d1e0bbf3.zip
(doprnt): Fix typo in error message.
Diffstat (limited to 'src')
-rw-r--r--src/doprnt.c2
1 files changed, 1 insertions, 1 deletions
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)
105 size_bound += 50; 105 size_bound += 50;
106 106
107 if (size_bound > (unsigned) (1 << (INTBITS - 1))) 107 if (size_bound > (unsigned) (1 << (INTBITS - 1)))
108 error ("Format padding to large"); 108 error ("Format padding too large");
109 109
110 /* Make sure we have that much. */ 110 /* Make sure we have that much. */
111 if (size_bound > size_allocated) 111 if (size_bound > size_allocated)