diff options
Diffstat (limited to 'usr.sbin/pw/pw.h')
-rw-r--r-- | usr.sbin/pw/pw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pw/pw.h b/usr.sbin/pw/pw.h index aa437ec..7718039 100644 --- a/usr.sbin/pw/pw.h +++ b/usr.sbin/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 { |