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 2a3839d389e..3a1e41741c5 100644 --- a/src/doprnt.c +++ b/src/doprnt.c | |||
| @@ -137,7 +137,7 @@ doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) | |||
| 137 | size_bound = -size_bound; | 137 | size_bound = -size_bound; |
| 138 | size_bound += 50; | 138 | size_bound += 50; |
| 139 | 139 | ||
| 140 | if (size_bound > (unsigned) (1 << (BITS_PER_INT - 1))) | 140 | if (size_bound > (((unsigned) 1) << (BITS_PER_INT - 1))) |
| 141 | error ("Format padding too large"); | 141 | error ("Format padding too large"); |
| 142 | 142 | ||
| 143 | /* Make sure we have that much. */ | 143 | /* Make sure we have that much. */ |