diff options
author | June McEnroe <june@causal.agency> | 2020-02-13 21:57:55 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-13 21:57:55 -0500 |
commit | 1e226593ef9860237ec08ad66affcb7da7138f5d (patch) | |
tree | 2b0bc6c5902166a71412128cd17f4f4c066906ba /command.c | |
parent | Set swap correctly when closing a window (diff) | |
download | catgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.tar.gz catgirl-1e226593ef9860237ec08ad66affcb7da7138f5d.zip |
Rename procPipe to utilPipe
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c index f801666..ffbea9f 100644 --- a/command.c +++ b/command.c @@ -207,7 +207,7 @@ static void commandHelp(size_t id, char *params) { snprintf(buf, sizeof(buf), "ip%s$", (params ? params : "COMMANDS")); setenv("LESS", buf, 1); execlp("man", "man", "1", "catgirl", NULL); - dup2(procPipe[1], STDERR_FILENO); + dup2(utilPipe[1], STDERR_FILENO); warn("man"); _exit(EX_UNAVAILABLE); } |