diff options
author | okan | 2014-09-08 21:15:14 +0000 |
---|---|---|
committer | okan | 2014-09-08 21:15:14 +0000 |
commit | 793ad81495bd915b0baf0c165ad95f0058936336 (patch) | |
tree | 307c340db07cc31ea34a4e11000aac4f096becfd /mousefunc.c | |
parent | 274be703fd0e3e60bedca665e59471b5e0f64de8 (diff) | |
download | cwm-793ad81495bd915b0baf0c165ad95f0058936336.tar.gz |
name the group client queue appropriately, like other queues
Diffstat (limited to '')
-rw-r--r-- | mousefunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mousefunc.c b/mousefunc.c index f2ce0ef..c8f7a73 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: mousefunc.c,v 1.79 2014/09/08 20:11:22 okan Exp $ + * $OpenBSD: mousefunc.c,v 1.80 2014/09/08 21:15:14 okan Exp $ */ #include <sys/param.h> @@ -188,7 +188,7 @@ mousefunc_menu_group(struct client_ctx *cc, union arg *arg) TAILQ_INIT(&menuq); TAILQ_FOREACH(gc, &sc->groupq, entry) { - if (TAILQ_EMPTY(&gc->clients)) + if (TAILQ_EMPTY(&gc->clientq)) continue; menuq_add(&menuq, gc, group_hidden_state(gc) ? "%d: [%s]" : "%d: %s", |