mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Fix several missing initializer warnings in gio/tests/gsubprocess.c
gio/tests/gsubprocess.c: In function ‘test_communicate_async’: gio/tests/gsubprocess.c:774:3: error: missing initializer for field ‘running’ of ‘TestAsyncCommunicateData’ 774 | TestAsyncCommunicateData data = { flags, 0, }; | ^~~~~~~~~~~~~~~~~~~~~~~~ gio/tests/gsubprocess.c: In function ‘test_communicate_utf8_async’: gio/tests/gsubprocess.c:1025:3: error: missing initializer for field ‘running’ of ‘TestAsyncCommunicateData’ 1025 | TestAsyncCommunicateData data = { flags, 0, }; | ^~~~~~~~~~~~~~~~~~~~~~~~ gio/tests/gsubprocess.c: In function ‘test_communicate_utf8_cancelled_async’: gio/tests/gsubprocess.c:1058:3: error: missing initializer for field ‘running’ of ‘TestAsyncCommunicateData’ 1058 | TestAsyncCommunicateData data = { flags, 0, }; | ^~~~~~~~~~~~~~~~~~~~~~~~ gio/tests/gsubprocess.c: In function ‘test_communicate_utf8_async_invalid’: gio/tests/gsubprocess.c:1202:3: error: missing initializer for field ‘running’ of ‘TestAsyncCommunicateData’ 1202 | TestAsyncCommunicateData data = { flags, 0, }; | ^~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
parent
b07fdb6e4a
commit
c216f2299d
@ -771,7 +771,7 @@ test_communicate_async (gconstpointer test_data)
|
||||
GSubprocessFlags flags = GPOINTER_TO_INT (test_data);
|
||||
GError *error = NULL;
|
||||
GPtrArray *args;
|
||||
TestAsyncCommunicateData data = { flags, 0, };
|
||||
TestAsyncCommunicateData data = { flags, 0, 0, NULL };
|
||||
GSubprocess *proc;
|
||||
GCancellable *cancellable = NULL;
|
||||
GBytes *input;
|
||||
@ -1022,7 +1022,7 @@ test_communicate_utf8_async (gconstpointer test_data)
|
||||
GSubprocessFlags flags = GPOINTER_TO_INT (test_data);
|
||||
GError *error = NULL;
|
||||
GPtrArray *args;
|
||||
TestAsyncCommunicateData data = { flags, 0, };
|
||||
TestAsyncCommunicateData data = { flags, 0, 0, NULL };
|
||||
GSubprocess *proc;
|
||||
GCancellable *cancellable = NULL;
|
||||
|
||||
@ -1055,7 +1055,7 @@ test_communicate_utf8_cancelled_async (gconstpointer test_data)
|
||||
GSubprocessFlags flags = GPOINTER_TO_INT (test_data);
|
||||
GError *error = NULL;
|
||||
GPtrArray *args;
|
||||
TestAsyncCommunicateData data = { flags, 0, };
|
||||
TestAsyncCommunicateData data = { flags, 0, 0, NULL };
|
||||
GSubprocess *proc;
|
||||
GCancellable *cancellable = NULL;
|
||||
|
||||
@ -1199,7 +1199,7 @@ test_communicate_utf8_async_invalid (void)
|
||||
GSubprocessFlags flags = G_SUBPROCESS_FLAGS_STDOUT_PIPE;
|
||||
GError *error = NULL;
|
||||
GPtrArray *args;
|
||||
TestAsyncCommunicateData data = { flags, 0, };
|
||||
TestAsyncCommunicateData data = { flags, 0, 0, NULL };
|
||||
GSubprocess *proc;
|
||||
GCancellable *cancellable = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user