diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-09-20 22:17:03 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-09-20 22:17:03 +0000 |
commit | bd24bdd411ce7868bd2f7a6b972468693392542f (patch) | |
tree | edb2831b4aef099a9f1c0db3561c58fe1bb982a4 /cmd-move-window.c | |
parent | 7335ef5792791e803b090fb9d54718604a0d7dab (diff) | |
download | rtmux-bd24bdd411ce7868bd2f7a6b972468693392542f.tar.gz rtmux-bd24bdd411ce7868bd2f7a6b972468693392542f.tar.bz2 rtmux-bd24bdd411ce7868bd2f7a6b972468693392542f.zip |
Sync OpenBSD patchset 334:
Nuke unused variables and fix stupid error message.
Diffstat (limited to 'cmd-move-window.c')
-rw-r--r-- | cmd-move-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-move-window.c b/cmd-move-window.c index de1f61f7..ae0595d2 100644 --- a/cmd-move-window.c +++ b/cmd-move-window.c @@ -1,4 +1,4 @@ -/* $Id: cmd-move-window.c,v 1.10 2009-09-20 22:15:32 tcunha Exp $ */ +/* $Id: cmd-move-window.c,v 1.11 2009-09-20 22:17:03 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -56,7 +56,7 @@ cmd_move_window_exec(struct cmd *self, struct cmd_ctx *ctx) kflag = data->chflags & CMD_CHFLAG('k'); dflag = data->chflags & CMD_CHFLAG('d'); if (server_link_window(wl, dst, idx, kflag, !dflag, &cause) != 0) { - ctx->error(ctx, "can't create session: %s", cause); + ctx->error(ctx, "can't move window: %s", cause); xfree(cause); return (-1); } |