diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-02-26 20:24:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-02-26 20:24:16 +0000 |
commit | d8e77dfd58b45e8496abba3ef06a77af4b982286 (patch) | |
tree | 80296241fef3ed9b7d2afb067427e00348315b60 /src/doprnt.c | |
parent | fcc303f4c1853369188ed49b6ced75a0b85e2ecb (diff) | |
download | emacs-d8e77dfd58b45e8496abba3ef06a77af4b982286.tar.gz |
(doprnt1): Move cast to unsigned inside a shift.
Diffstat (limited to 'src/doprnt.c')
-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) size_bound = -size_bound; size_bound += 50; - if (size_bound > (unsigned) (1 << (BITS_PER_INT - 1))) + if (size_bound > (((unsigned) 1) << (BITS_PER_INT - 1))) error ("Format padding too large"); /* Make sure we have that much. */ |