summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pw/pw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw/pw.h b/pw/pw.h
index aa437ec..7718039 100644
--- a/pw/pw.h
+++ b/pw/pw.h
@@ -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
{