From 1717c90cc329c29ff6c1013c6eba675673d337f5 Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Wed, 9 Sep 1998 02:22:28 +0000 Subject: [PATCH] Terminate the defdrives array correctly. (Shame, Rod!) Submitted by: Scott Michel --- usr.bin/vmstat/names.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/vmstat/names.c b/usr.bin/vmstat/names.c index 90c95f93167d..b7d3a3a9e42b 100644 --- a/usr.bin/vmstat/names.c +++ b/usr.bin/vmstat/names.c @@ -44,7 +44,7 @@ char *defdrives[] = { 0 }; */ #include -char *defdrives[] = { "wd0", "wd1", "sd0", "sd1" }; +char *defdrives[] = { "wd0", "wd1", "sd0", "sd1", 0 }; int read_names()