tests: Add missing NULL terminator to spawn-singlethread test

This should have been in commit
b31f3f5f80.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall 2021-02-16 15:08:47 +00:00
parent 51e964849b
commit b018730087

View File

@ -439,7 +439,7 @@ test_spawn_fd_assignment_clash (void)
const guint n_fds = 10;
gint source_fds[n_fds];
gint target_fds[n_fds];
const gchar *argv[] = { "/nonexistent" };
const gchar *argv[] = { "/nonexistent", NULL };
gboolean retval;
GError *local_error = NULL;
struct stat statbuf;