summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 0fec7167588..44f6285795a 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -672,7 +672,10 @@ close_output_streams (void)
int
main (int argc, char **argv)
{
- char stack_bottom_variable;
+ /* Variable near the bottom of the stack, and aligned appropriately
+ for pointers. */
+ void *stack_bottom_variable;
+
bool do_initial_setlocale;
bool dumping;
int skip_args = 0;
@@ -688,7 +691,7 @@ main (int argc, char **argv)
char *original_pwd = 0;
/* Record (approximately) where the stack begins. */
- stack_bottom = &stack_bottom_variable;
+ stack_bottom = (char *) &stack_bottom_variable;
#ifndef CANNOT_DUMP
dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0