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

gio/tests/socket-server.c:43:8: warning: missing field 'short_name' initializer
  {NULL}
       ^
This commit is contained in:
Emmanuel Fleury 2021-04-28 23:19:30 +02:00
parent 66af256621
commit 689b9b545f

View File

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