diff options
Diffstat (limited to 'mixer.c')
| -rw-r--r-- | mixer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -209,7 +209,7 @@ static void run(const char *exe, const char *cmd) char *cmdline = make_message("%s %s", exe, cmd); PARA_INFO_LOG("%s\n", cmdline); - ret = para_exec_cmdline_pid(&pid, cmdline, fds); + ret = xexec(&pid, cmdline, fds); free(cmdline); if (ret < 0) { PARA_ERROR_LOG("%s\n", para_strerror(-ret)); @@ -238,7 +238,7 @@ static char *get_status_item(const char *status_item_name) cmdline = make_message("para_audioc -- stat --one-shot %s", status_item_name); - ret = para_exec_cmdline_pid(&pid, cmdline, fds); + ret = xexec(&pid, cmdline, fds); free(cmdline); if (ret < 0) { PARA_ERROR_LOG("%s\n", para_strerror(-ret)); |
