summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
commit802d297a58008e85fcc899f549d9538364ec84fe (patch)
tree9f162a4c89a32951d4e610b9307f245139389792 /pw
parent4be75621f67c440f574ea826778bfdfe52362753 (diff)
downloadpw-darwin-802d297a58008e85fcc899f549d9538364ec84fe.tar.gz
pw-darwin-802d297a58008e85fcc899f549d9538364ec84fe.tar.zst
pw-darwin-802d297a58008e85fcc899f549d9538364ec84fe.zip
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen. Requested by: msmith and others
Diffstat (limited to 'pw')
-rw-r--r--pw/pw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw/pw.h b/pw/pw.h
index 7718039..aa437ec 100644
--- a/pw/pw.h
+++ b/pw/pw.h
@@ -66,10 +66,10 @@ struct carg
{
int ch;
char *val;
- LIST_ENTRY(struct carg) list;
+ LIST_ENTRY(carg) list;
};
-extern LIST_HEAD(cargs, struct carg) arglist;
+extern LIST_HEAD(cargs, carg) arglist;
struct userconf
{