diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
| commit | 4be75621f67c440f574ea826778bfdfe52362753 (patch) | |
| tree | 7d3c3c3cd24da7d3796b23c7a3fe14f005662955 | |
| parent | 8bf73d1a7a1170cba602614ad37e999fbedac62b (diff) | |
| download | pw-darwin-4be75621f67c440f574ea826778bfdfe52362753.tar.gz pw-darwin-4be75621f67c440f574ea826778bfdfe52362753.zip | |
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct.
Suggested by: phk
Reviewed by: phk
Approved by: mdodd
| -rw-r--r-- | pw/pw.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,10 +66,10 @@ struct carg { int ch; char *val; - LIST_ENTRY(carg) list; + LIST_ENTRY(struct carg) list; }; -extern LIST_HEAD(cargs, carg) arglist; +extern LIST_HEAD(cargs, struct carg) arglist; struct userconf { |
