diff options
Diffstat (limited to 'modules/computer.c')
-rw-r--r-- | modules/computer.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |