From 961b97d43458f3c57241940cabebb3bedf7e4c00 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 26 May 2000 02:09:24 +0000 Subject: Back out the previous change to the queue(3) interface. It was not discussed and should probably not happen. Requested by: msmith and others --- usr.sbin/usbd/usbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/usbd/usbd.c') diff --git a/usr.sbin/usbd/usbd.c b/usr.sbin/usbd/usbd.c index 899fd95..06e7637 100644 --- a/usr.sbin/usbd/usbd.c +++ b/usr.sbin/usbd/usbd.c @@ -143,10 +143,10 @@ typedef struct action_s { char *attach; /* commands to execute */ char *detach; - STAILQ_ENTRY(struct action_s) next; + STAILQ_ENTRY(action_s) next; } action_t; -STAILQ_HEAD(action_list, struct action_s) actions = STAILQ_HEAD_INITIALIZER(actions); +STAILQ_HEAD(action_list, action_s) actions = STAILQ_HEAD_INITIALIZER(actions); typedef struct action_match_s { action_t *action; -- cgit v1.1