summaryrefslogtreecommitdiff
path: root/mixer.c
diff options
context:
space:
mode:
authorAndre Noll <maan@tuebingen.mpg.de>2026-07-22 19:43:18 +0200
committerAndre Noll <maan@tuebingen.mpg.de>2026-08-01 22:18:30 +0200
commit542c4a5da15efc05342f99e092e6a2e2b831c126 (patch)
tree9497c71cf0e2aa04d6980291862869f9921b148c /mixer.c
parenta65650c6ecc4b5d1e1af9c856c0f96c9056b724f (diff)
exec: Rename para_exec_cmdline_pid() to xexec().HEADnextmaster
This is shorter and conveys enough information. Rename the static para_exec() as well.
Diffstat (limited to 'mixer.c')
-rw-r--r--mixer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mixer.c b/mixer.c
index 9c66c237..153cb80e 100644
--- a/mixer.c
+++ b/mixer.c
@@ -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));