diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-07 02:59:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-07 02:59:03 +0000 |
commit | 8217c647680d17e71725fbb6fc43fc3dde571e80 (patch) | |
tree | c6a256881271d4f7af794798b8abe25faa0f8a5d /src/puresize.h | |
parent | f8c25f1b67876b23e6fee7e252ad9bd6783a0993 (diff) | |
download | emacs-8217c647680d17e71725fbb6fc43fc3dde571e80.tar.gz |
(CHECK_IMPURE): Remove & from before my_edata.
Diffstat (limited to 'src/puresize.h')
-rw-r--r-- | src/puresize.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/puresize.h b/src/puresize.h index 03ad4e7900d..5f571f097ea 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -74,14 +74,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* when PNTR_COMPARISON_TYPE is not the default (unsigned int) */ #define CHECK_IMPURE(obj) \ { extern char my_edata[]; \ - if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) &my_edata) \ + if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) my_edata) \ pure_write_error (); } #else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */ #define CHECK_IMPURE(obj) \ { extern char my_edata[]; \ - if (XPNTR (obj) < (unsigned int) &my_edata) \ + if (XPNTR (obj) < (unsigned int) my_edata) \ pure_write_error (); } #endif /* PNTR_COMPARISON_TYPE */ |