diff options
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 3b6ea76943d..ce5a6d2aea8 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2246,7 +2246,7 @@ struct Lisp_User_Ptr bool_bf gcmarkbit : 1; unsigned spacer : 15; - void (*finalizer) (void*); + void (*finalizer) (void *); void *p; }; #endif @@ -2347,7 +2347,6 @@ XUSER_PTR (Lisp_Object a) } #endif - /* Forwarding pointer to an int variable. This is allowed only in the value cell of a symbol, |