1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

(scm_handle_by_message): Add dummy return value to avoid

compiler warning on cygwin.
This commit is contained in:
Kevin Ryde 2006-06-02 23:39:12 +00:00
parent b42f4dd9ac
commit 3dfa9910db

View file

@ -499,6 +499,11 @@ scm_handle_by_message (void *handler_data, SCM tag, SCM args)
handler_message (handler_data, tag, args);
scm_i_pthread_exit (NULL);
/* this point not reached, but suppress gcc warning about no return value
in case scm_i_pthread_exit isn't marked as "noreturn" (which seemed not
to be the case on cygwin for instance) */
return SCM_BOOL_F;
}