summaryrefslogtreecommitdiffstats
path: root/notify.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-16 19:04:05 +0000
committernicm <nicm>2016-10-16 19:04:05 +0000
commitb342bd0b462f69a9fc9a59d52bcd4bb34b57114f (patch)
tree2da71181e3b540b8b52422cb598682f1505c2e89 /notify.c
parentddc4512d2e0eda6c705e002cb5dbf80719d709e1 (diff)
Mass rename struct cmd_q to struct cmdq_item and related.
Diffstat (limited to 'notify.c')
-rw-r--r--notify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/notify.c b/notify.c
index a75b3182..93276809 100644
--- a/notify.c
+++ b/notify.c
@@ -66,7 +66,7 @@ notify_hook(struct notify_entry *ne)
const char *name;
struct cmd_find_state fs;
struct hook *hook;
- struct cmd_q *new_cmdq, *loop;
+ struct cmdq_item *new_item, *loop;
name = notify_hooks[ne->type];
if (name == NULL)
@@ -87,12 +87,12 @@ notify_hook(struct notify_entry *ne)
return;
log_debug("notify hook %s", name);
- new_cmdq = cmdq_get_command(hook->cmdlist, &fs, NULL, CMD_Q_NOHOOKS);
+ new_item = cmdq_get_command(hook->cmdlist, &fs, NULL, CMDQ_NOHOOKS);
- for (loop = new_cmdq; loop != NULL; loop = loop->next)
+ for (loop = new_item; loop != NULL; loop = loop->next)
loop->hook = xstrdup(name);
- cmdq_append(NULL, new_cmdq);
+ cmdq_append(NULL, new_item);
}
static void