From 5c8fb47005664d57cd846f861787da503e9a3e83 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Wed, 9 Dec 2020 18:23:16 -0800 Subject: [PATCH] Change local variable name to avoid warnings for shadowing. modified: inc/arith.h --- inc/arith.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/arith.h b/inc/arith.h index 84c4175..2c1edb0 100755 --- a/inc/arith.h +++ b/inc/arith.h @@ -174,11 +174,11 @@ return(S_POSITIVE | arg); \ case 0xFFFF0000: \ return(S_NEGATIVE | (0xFFFF & arg)); \ - default:{register LispPTR *wordp; \ + default:{register LispPTR *fixpp; \ /* arg is FIXP, call createcell */ \ - wordp = (LispPTR *) createcell68k(TYPE_FIXP); \ - *((int *)wordp) = arg; \ - return(LADDR_from_68k(wordp)); \ + fixpp = (LispPTR *) createcell68k(TYPE_FIXP); \ + *((int *)fixpp) = arg; \ + return(LADDR_from_68k(fixpp)); \ } \ }