From bd87d69eda3d704f97820326f8f17b533446670b Mon Sep 17 00:00:00 2001 From: msmith Date: Sat, 6 Nov 1999 07:43:22 +0000 Subject: Clean up a couple of initialisations in order to suppress a correct but un-useful warning. --- sys/kern/vfs_mount.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/kern/vfs_mount.c') diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 654d693..973c836 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -167,8 +167,10 @@ vfs_mountroot_try(char *mountfrom) int error; char patt[32]; - vfsname = path = mp = NULL; - error = EINVAL; + vfsname = NULL; + path = NULL; + mp = NULL; + error = EINVAL; if (mountfrom == NULL) goto done; -- cgit v1.1