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/Makefile | 2 +- usr.sbin/pstat/pstat.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'usr.sbin/pstat') diff --git a/usr.sbin/pstat/Makefile b/usr.sbin/pstat/Makefile index 2431224..8fd2ced 100644 --- a/usr.sbin/pstat/Makefile +++ b/usr.sbin/pstat/Makefile @@ -6,7 +6,7 @@ LINKS= ${BINDIR}/pstat ${BINDIR}/swapinfo MAN= pstat.8 MLINKS= pstat.8 swapinfo.8 -WARNS?= 2 +WARNS?= 3 DPADD= ${LIBKVM} ${LIBUTIL} LDADD= -lkvm -lutil 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