Fix missing initializer warning in gio/tests/socket-client.c

gio/tests/socket-client.c:37:8: warning: missing field 'short_name' initializer
  {NULL}
       ^
This commit is contained in:
Emmanuel Fleury 2021-04-28 23:21:03 +02:00
parent 689b9b545f
commit 4301110174

View File

@ -34,7 +34,7 @@ static GOptionEntry cmd_entries[] = {
"Time out reads after the specified number of seconds", NULL},
{"tls", 'T', 0, G_OPTION_ARG_NONE, &tls,
"Use TLS (SSL)", NULL},
{NULL}
G_OPTION_ENTRY_NULL
};
#include "socket-common.c"