From e03eb69edbcd171f32edf369af2c766c383e4c16 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 1 Mar 2009 17:32:12 +0000 Subject: [PATCH] Correct command FD! Organization: Straylight/Edgeware From: Richard Kettlewell --- lib/uaudio-command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uaudio-command.c b/lib/uaudio-command.c index 12a47dc..6b7ef66 100644 --- a/lib/uaudio-command.c +++ b/lib/uaudio-command.c @@ -80,7 +80,7 @@ static void command_open(void) { fatal(errno, "error executing /bin/sh"); } close(pfd[0]); - command_pid = pfd[1]; + command_fd = pfd[1]; } /** @brief Send audio data to subprocess */ -- [mdw]