diff options
| author | Andre Noll <maan@tuebingen.mpg.de> | 2026-07-22 19:43:18 +0200 |
|---|---|---|
| committer | Andre Noll <maan@tuebingen.mpg.de> | 2026-08-01 22:18:30 +0200 |
| commit | 542c4a5da15efc05342f99e092e6a2e2b831c126 (patch) | |
| tree | 9497c71cf0e2aa04d6980291862869f9921b148c /mixer.c | |
| parent | a65650c6ecc4b5d1e1af9c856c0f96c9056b724f (diff) | |
This is shorter and conveys enough information. Rename the static para_exec()
as well.
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)); |
