From 3c83737fa488281f20030b5b36d7e1d4ba4313c9 Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Mon, 15 Jul 2019 18:46:59 -0700 Subject: Always pulse status bar while spawning processes synchronously --- modules/computer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/computer.c') diff --git a/modules/computer.c b/modules/computer.c index 99257e9f..0123ef26 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -301,9 +301,9 @@ void scan_dev(gboolean reload) } if (detect_lang[i].stdout) { - found = g_spawn_command_line_sync(detect_lang[i].version_command, &output, &ignored, NULL, NULL); + found = hardinfo_spawn_command_line_sync(detect_lang[i].version_command, &output, &ignored, NULL, NULL); } else { - found = g_spawn_command_line_sync(detect_lang[i].version_command, &ignored, &output, NULL, NULL); + found = hardinfo_spawn_command_line_sync(detect_lang[i].version_command, &ignored, &output, NULL, NULL); } g_free(ignored); -- cgit v1.2.3