From 29e024a36a8080cb38f91ea04edd542f5a205cbb Mon Sep 17 00:00:00 2001 From: keramida Date: Mon, 21 Mar 2005 18:11:31 +0000 Subject: Use a designator for initializing only one member of the nlist structs, making pstat WARNS=3 clean on i386, sparc64 and amd64. Bump WARNS level to 3. Approved by: sam, pjd --- usr.sbin/pstat/pstat.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'usr.sbin/pstat/pstat.c') diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 7a721a3..ca78637 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -81,11 +81,11 @@ enum { }; static struct nlist nl[] = { - { "_constty", 0 }, - { "_maxfiles", 0 }, - { "_nfiles", 0 }, - { "_tty_list", 0 }, - { "" } + { .n_name = "_constty" }, + { .n_name = "_maxfiles" }, + { .n_name = "_nfiles" }, + { .n_name = "_tty_list" }, + { .n_name = "" } }; static int humanflag; -- cgit v1.1