summaryrefslogtreecommitdiff
path: root/src/doprnt.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-10-31 02:34:16 +0000
committerKarl Heuer <kwzh@gnu.org>1995-10-31 02:34:16 +0000
commit68be917ded75e3147180af2a0a51fc8c89d042d8 (patch)
treee3a81d2c4ac2e05e981721dae3508a634c7d6cab /src/doprnt.c
parent1b124db4a5e0a90143b5a8d3fa9cfb17bdbbd975 (diff)
downloademacs-68be917ded75e3147180af2a0a51fc8c89d042d8.tar.gz
(BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
Rename from SHORTBITS, INTBITS, LONGBITS.
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 99e10c0730c..5639a7eff3a 100644
--- a/src/doprnt.c
+++ b/src/doprnt.c
@@ -104,7 +104,7 @@ doprnt (buffer, bufsize, format, format_end, nargs, args)
size_bound = -size_bound;
size_bound += 50;
- if (size_bound > (unsigned) (1 << (INTBITS - 1)))
+ if (size_bound > (unsigned) (1 << (BITS_PER_INT - 1)))
error ("Format padding too large");
/* Make sure we have that much. */