Adapt to some name changes in the tmpfs_node structure (to fix the build

under vax with gcc 2.95).  Provided by he@.
This commit is contained in:
jmmv 2006-02-16 14:58:35 +00:00
parent 064fbe7e18
commit 772e1db686
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: tmpfs.c,v 1.1 2006/02/10 16:01:45 christos Exp $ */
/* $NetBSD: tmpfs.c,v 1.2 2006/02/16 14:58:35 jmmv Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: tmpfs.c,v 1.1 2006/02/10 16:01:45 christos Exp $");
__RCSID("$NetBSD: tmpfs.c,v 1.2 2006/02/16 14:58:35 jmmv Exp $");
#define __POOL_EXPOSE
#include <sys/types.h>
@ -76,7 +76,7 @@ tmpfs_filestat(struct vnode *vp, struct filestat *fsp)
switch (tn.tn_type) {
case VBLK:
case VCHR:
fsp->rdev = tn.tn_rdev;
fsp->rdev = tn.tn_spec.tn_dev.tn_rdev;
break;
default:
fsp->rdev = 0;