diff options
author | 2012-04-01 13:27:18 +0000 | |
---|---|---|
committer | 2012-04-01 13:27:18 +0000 | |
commit | 30464a41797a97a97376091f7c9a228f11ed599d (patch) | |
tree | 02ddbd2e45cfd1c5ceede7f04f8a0fd01f270a3c /usr.bin/tmux/cmd-select-layout.c | |
parent | make this work on big endian archs again, broken in the last commit. (diff) | |
download | wireguard-openbsd-30464a41797a97a97376091f7c9a228f11ed599d.tar.xz wireguard-openbsd-30464a41797a97a97376091f7c9a228f11ed599d.zip |
Turn some errors down to info.
Diffstat (limited to 'usr.bin/tmux/cmd-select-layout.c')
-rw-r--r-- | usr.bin/tmux/cmd-select-layout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-select-layout.c b/usr.bin/tmux/cmd-select-layout.c index 722ef3ec825..fe3ed6849c5 100644 --- a/usr.bin/tmux/cmd-select-layout.c +++ b/usr.bin/tmux/cmd-select-layout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-select-layout.c,v 1.14 2012/04/01 13:18:38 nicm Exp $ */ +/* $OpenBSD: cmd-select-layout.c,v 1.15 2012/04/01 13:27:18 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -113,13 +113,13 @@ cmd_select_layout_exec(struct cmd *self, struct cmd_ctx *ctx) layout_list_add(w); if (args_has(self->args, 'U')) { if ((layoutname = layout_list_redo(w)) == NULL) { - ctx->error(ctx, "no more layout history"); + ctx->info(ctx, "no more layout history"); return (-1); } goto set_layout; } else if (args_has(self->args, 'u')) { if ((layoutname = layout_list_undo(w)) == NULL) { - ctx->error(ctx, "no more layout history"); + ctx->info(ctx, "no more layout history"); return (-1); } goto set_layout; |