1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-02 12:20:51 +00:00

Terminate the defdrives array correctly. (Shame, Rod!)

Submitted by:	Scott Michel <scottm@cs.ucla.edu>
This commit is contained in:
Mike Smith 1998-09-09 02:22:28 +00:00
parent 3d2b8efaa1
commit 1717c90cc3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38962

View File

@ -44,7 +44,7 @@ char *defdrives[] = { 0 };
*/
#include <i386/isa/isa_device.h>
char *defdrives[] = { "wd0", "wd1", "sd0", "sd1" };
char *defdrives[] = { "wd0", "wd1", "sd0", "sd1", 0 };
int
read_names()