diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-05-08 16:24:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-05-08 16:24:55 +0000 |
commit | fcf1ba3321dcddd6733d3d3e76b53dafc060440f (patch) | |
tree | 136a4cbde62db03c1067b99aacdde1fa4f2e8a85 /src/emacs.c | |
parent | f80770e4c362bf1d36ab436c3c8f854ea1a73997 (diff) | |
download | emacs-fcf1ba3321dcddd6733d3d3e76b53dafc060440f.tar.gz |
(Fdump_emacs): Don't use & before my_edata.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index 396c80210ac..2a79068b39f 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1298,7 +1298,7 @@ and announce itself normally when it is run.") #ifndef WINDOWSNT /* On Windows, this was done before dumping, and that once suffices. Meanwhile, my_edata is not valid on Windows. */ - memory_warnings (&my_edata, malloc_warning); + memory_warnings (my_edata, malloc_warning); #endif /* not WINDOWSNT */ #endif unexec (XSTRING (intoname)->data, |