debug.c:488:41: warning: missing sentinel in function call [-Wsentinel]
Source code is
gchar *str2 = g_strconcat(str, " None");
Suggest new code
gchar *str2 = g_strconcat(str, " None", NULL);
Log in to post a comment.