From 63d9b8eefeb7c4f687f451642f340ab59503fa1a Mon Sep 17 00:00:00 2001 From: bakkeby Date: Mon, 10 May 2021 10:33:25 +0200 Subject: [PATCH] execsh: missing arg argument https://git.suckless.org/st/commit/21e0d6e8b8d20903494386e7e6f43201b3761154.html --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 8d13d58..d35f134 100644 --- a/st.c +++ b/st.c @@ -948,7 +948,7 @@ execsh(char *cmd, char **args) prog = sh; arg = NULL; } - DEFAULT(args, ((char *[]) {prog, NULL})); + DEFAULT(args, ((char *[]) {prog, arg, NULL})); unsetenv("COLUMNS"); unsetenv("LINES");