aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index db0b4cba965..d26f7fd24dc 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1136,7 +1136,7 @@ print (obj, printcharfun, escapeflag)
1136 register unsigned char c; 1136 register unsigned char c;
1137 struct gcpro gcpro1; 1137 struct gcpro gcpro1;
1138 int size_in_chars 1138 int size_in_chars
1139 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR) / BITS_PER_CHAR; 1139 = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
1140 1140
1141 GCPRO1 (obj); 1141 GCPRO1 (obj);
1142 1142