1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00

* gh_init.c (gh_enter): Cast c_main_prog to a void * before

passing it as the closure argument to scm_boot_guile.  (Bill
Janssen)
This commit is contained in:
Jim Blandy 1997-05-26 23:51:42 +00:00
parent 36539a157a
commit 524dfbccdf

View file

@ -69,7 +69,7 @@ gh_launch_pad (void *closure, int argc, char **argv)
void
gh_enter (int argc, char *argv[], main_prog_t c_main_prog)
{
scm_boot_guile (argc, argv, gh_launch_pad, c_main_prog);
scm_boot_guile (argc, argv, gh_launch_pad, (void *) c_main_prog);
/* never returns */
}