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:
parent
b42f4dd9ac
commit
3dfa9910db
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue