aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/exec_always.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-15 07:42:38 +0200
committerGitHub <noreply@github.com>2018-04-15 07:42:38 +0200
commit3ea2a9a85e7db6e9858ccf68a67b312cd6db36c5 (patch)
tree9d81001776f4e095de76a63d540ab1ab0ca45caf /sway/commands/exec_always.c
parentdcecfe6a996c89988f7639493395ebe224f8d9a8 (diff)
parent0feb25e0283657087dd73a06c1b5ae891e0896b3 (diff)
Merge pull request #1811 from martinetd/gcc_warnings
Fix gcc warnings
Diffstat (limited to 'sway/commands/exec_always.c')
-rw-r--r--sway/commands/exec_always.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/exec_always.c b/sway/commands/exec_always.c
index 954950e7..af4e4965 100644
--- a/sway/commands/exec_always.c
+++ b/sway/commands/exec_always.c
@@ -32,7 +32,7 @@ struct cmd_results *cmd_exec_always(int argc, char **argv) {
// Put argument into cmd array
char cmd[4096];
- strncpy(cmd, tmp, sizeof(cmd));
+ strncpy(cmd, tmp, sizeof(cmd) - 1);
cmd[sizeof(cmd) - 1] = 0;
free(tmp);
wlr_log(L_DEBUG, "Executing %s", cmd);