We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ee195 commit 00a9378Copy full SHA for 00a9378
lisp/c/sysfunc.c
@@ -113,10 +113,10 @@ register pointer p;
113
#if Solaris2
114
if ((eusinteger_t)p<(eusinteger_t)_end) return(NULL);
115
#elif sun3 || sun4 || news || (i386 && (!Cygwin && !Darwin)) || alpha || mips /* Cygwin does not have edata */
116
- if ((eusinteger_t)p<(eusinteger_t)edata) return(NULL);
+ if ((eusinteger_t)p<(eusinteger_t)edata) return((int)NULL);
117
#endif
118
#if sun4 || vax || i386
119
- if ((&ctx->stack[0]<=p) && (p<= &ctx->stack[MAXSTACK])) return(NULL);
+ if (((pointer)(&ctx->stack[0])<=p) && (p<= (pointer)(&ctx->stack[MAXSTACK]))) return((int)NULL);
120
121
if (issymbol(p)) return((long int)NULL);
122
#if (WORD_SIZE == 64)
0 commit comments