summaryrefslogtreecommitdiff
path: root/src/doprnt.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-08-27 23:53:06 +0000
committerRichard M. Stallman <rms@gnu.org>1995-08-27 23:53:06 +0000
commitd0c41cee7d32db33b20d8e5da2954a17e0f3ebad (patch)
tree37513d42b50dcc3ac01dd2cf5b01ab757888a1a1 /src/doprnt.c
parente6cb1aff7b4cbfb6f182dabbb01b1337a6f7af55 (diff)
downloademacs-d0c41cee7d32db33b20d8e5da2954a17e0f3ebad.tar.gz
(doprnt): Fix typo in error message.
Diffstat (limited to 'src/doprnt.c')
-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)
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)