diff options
| author | Andrea Corallo | 2020-05-21 14:38:51 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-05-22 21:52:19 +0100 |
| commit | f036ec97cecc8d7ec2cd36741bbe2619cda1207b (patch) | |
| tree | 800da7c079c12bf8c586c0e84d5533a8fadf056b /src | |
| parent | 38a9ddbc1c656cfaab2c7660f7dab9b0587ecfef (diff) | |
| download | emacs-f036ec97cecc8d7ec2cd36741bbe2619cda1207b.tar.gz emacs-f036ec97cecc8d7ec2cd36741bbe2619cda1207b.zip | |
* src/comp.c: Fix i386 --enable-check-lisp-object-type
* src/comp.c (load_comp_unit): Fix return type, on i386 influence
parameter passing!
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c index 14862228ab2..6371757487c 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -3755,7 +3755,7 @@ load_comp_unit (struct Lisp_Native_Comp_Unit *comp_u, bool loading_dump, | |||
| 3755 | 3755 | ||
| 3756 | freloc_check_fill (); | 3756 | freloc_check_fill (); |
| 3757 | 3757 | ||
| 3758 | void (*top_level_run)(Lisp_Object) | 3758 | Lisp_Object (*top_level_run)(Lisp_Object) |
| 3759 | = dynlib_sym (handle, | 3759 | = dynlib_sym (handle, |
| 3760 | late_load ? "late_top_level_run" : "top_level_run"); | 3760 | late_load ? "late_top_level_run" : "top_level_run"); |
| 3761 | 3761 | ||