1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-29 05:13:30 +02:00

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

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