message.c: avoid a compilation warning

This commit is contained in:
Pierre Pronchery 2022-05-14 01:42:09 +02:00
parent c940e3df16
commit 6e44869ddf

View File

@ -143,6 +143,8 @@ static int _message(unsigned int timeout, char const * stock,
/* message_on_timeout */
static gboolean _message_on_timeout(gpointer data)
{
(void) data;
gtk_main_quit();
return FALSE;
}