aboutsummaryrefslogtreecommitdiffstats
path: root/src/casefiddle.c
diff options
context:
space:
mode:
authorStefan Monnier2008-04-01 06:02:20 +0000
committerStefan Monnier2008-04-01 06:02:20 +0000
commit994b75e0f42c0348419b6d7f08a70fa8d6ecb6c0 (patch)
tree38044f1c23e13ee5d649b9825589104847360360 /src/casefiddle.c
parent721c6d09b23feff2e49682e945119cd300395d05 (diff)
downloademacs-994b75e0f42c0348419b6d7f08a70fa8d6ecb6c0.tar.gz
emacs-994b75e0f42c0348419b6d7f08a70fa8d6ecb6c0.zip
(casify_object): Fix up int/EMACS_INT mixup.
Diffstat (limited to 'src/casefiddle.c')
-rw-r--r--src/casefiddle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c
index 316a56b639f..21a587b9a12 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -105,11 +105,11 @@ casify_object (flag, obj)
105 } 105 }
106 } 106 }
107 return obj; 107 return obj;
108 } 108 }
109 else 109 else
110 { 110 {
111 EMACS_INT i, i_byte, len; 111 EMACS_INT i, i_byte, size = SCHARS (obj);
112 EMACS_INT size = SCHARS (obj); 112 int len;
113 USE_SAFE_ALLOCA; 113 USE_SAFE_ALLOCA;
114 unsigned char *dst, *o; 114 unsigned char *dst, *o;
115 /* Over-allocate by 12%: this is a minor overhead, but should be 115 /* Over-allocate by 12%: this is a minor overhead, but should be