gsocket: Improve wording in a warning message slightly

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall 2023-03-23 14:08:41 +00:00
parent aab9cea326
commit 0387c15614

View File

@ -603,7 +603,7 @@ socket_set_nonblock (int fd)
#ifndef G_OS_WIN32
if (!g_unix_set_fd_nonblocking (fd, TRUE, &error))
{
g_warning ("Error setting socket nonblocking: %s", error->message);
g_warning ("Error setting socket to nonblocking mode: %s", error->message);
g_clear_error (&error);
}
#else