diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/doprnt.c | 2 |
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) |