aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 82b1c6b0355..c77bdc6372d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6195,14 +6195,15 @@ static Lisp_Object
6195android_make_lisp_symbol (struct Lisp_Symbol *sym) 6195android_make_lisp_symbol (struct Lisp_Symbol *sym)
6196{ 6196{
6197 intptr_t symoffset; 6197 intptr_t symoffset;
6198 Lisp_Object a;
6199 6198
6200 symoffset = (intptr_t) sym; 6199 symoffset = (intptr_t) sym;
6201 INT_SUBTRACT_WRAPV (symoffset, (intptr_t) &lispsym, 6200 INT_SUBTRACT_WRAPV (symoffset, (intptr_t) &lispsym,
6202 &symoffset); 6201 &symoffset);
6203 6202
6204 a = TAG_PTR (Lisp_Symbol, symoffset); 6203 {
6205 return a; 6204 Lisp_Object a = TAG_PTR (Lisp_Symbol, symoffset);
6205 return a;
6206 }
6206} 6207}
6207 6208
6208#endif 6209#endif