=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/notify.c,v retrieving revision 1.43 retrieving revision 1.44 diff -c -r1.43 -r1.44 *** src/usr.bin/tmux/notify.c 2022/10/28 13:00:02 1.43 --- src/usr.bin/tmux/notify.c 2023/06/30 13:19:32 1.44 *************** *** 1,4 **** ! /* $OpenBSD: notify.c,v 1.43 2022/10/28 13:00:02 nicm Exp $ */ /* * Copyright (c) 2012 George Nachman --- 1,4 ---- ! /* $OpenBSD: notify.c,v 1.44 2023/06/30 13:19:32 nicm Exp $ */ /* * Copyright (c) 2012 George Nachman *************** *** 194,200 **** ne->client = c; ne->session = s; ne->window = w; ! ne->pane = (wp != NULL ? wp->id : -1); ne->pbname = (pbname != NULL ? xstrdup(pbname) : NULL); ne->formats = format_create(NULL, NULL, 0, FORMAT_NOJOBS); --- 194,200 ---- ne->client = c; ne->session = s; ne->window = w; ! ne->pane = (wp != NULL ? (int)wp->id : -1); ne->pbname = (pbname != NULL ? xstrdup(pbname) : NULL); ne->formats = format_create(NULL, NULL, 0, FORMAT_NOJOBS); *************** *** 241,247 **** ne.client = cmdq_get_client(item); ne.session = target->s; ne.window = target->w; ! ne.pane = (target->wp != NULL ? target->wp->id : -1); ne.formats = format_create(NULL, NULL, 0, FORMAT_NOJOBS); format_add(ne.formats, "hook", "%s", name); --- 241,247 ---- ne.client = cmdq_get_client(item); ne.session = target->s; ne.window = target->w; ! ne.pane = (target->wp != NULL ? (int)target->wp->id : -1); ne.formats = format_create(NULL, NULL, 0, FORMAT_NOJOBS); format_add(ne.formats, "hook", "%s", name);