=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-find.c,v retrieving revision 1.70 retrieving revision 1.71 diff -c -r1.70 -r1.71 *** src/usr.bin/tmux/cmd-find.c 2019/03/12 13:14:04 1.70 --- src/usr.bin/tmux/cmd-find.c 2019/03/15 15:20:00 1.71 *************** *** 1,4 **** ! /* $OpenBSD: cmd-find.c,v 1.70 2019/03/12 13:14:04 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-find.c,v 1.71 2019/03/15 15:20:00 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott *************** *** 1264,1280 **** no_session: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find session %s", session); goto error; no_window: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find window %s", window); goto error; no_pane: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find pane %s", pane); goto error; } --- 1264,1280 ---- no_session: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find session: %s", session); goto error; no_window: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find window: %s", window); goto error; no_pane: if (~flags & CMD_FIND_QUIET) ! cmdq_error(item, "can't find pane: %s", pane); goto error; } *************** *** 1344,1350 **** /* If no client found, report an error. */ if (c == NULL && !quiet) ! cmdq_error(item, "can't find client %s", copy); free(copy); log_debug("%s: target %s, return %p", __func__, target, c); --- 1344,1350 ---- /* If no client found, report an error. */ if (c == NULL && !quiet) ! cmdq_error(item, "can't find client: %s", copy); free(copy); log_debug("%s: target %s, return %p", __func__, target, c);