don't copy the address of a pointer. Noticed by Anon Ymous

This commit is contained in:
christos 2009-02-25 13:52:18 +00:00
parent 223c75c0bc
commit 7b2f022cd6
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: setup.c,v 1.84 2008/08/30 10:46:16 bouyer Exp $ */
/* $NetBSD: setup.c,v 1.85 2009/02/25 13:52:18 christos Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)setup.c 8.10 (Berkeley) 5/9/95";
#else
__RCSID("$NetBSD: setup.c,v 1.84 2008/08/30 10:46:16 bouyer Exp $");
__RCSID("$NetBSD: setup.c,v 1.85 2009/02/25 13:52:18 christos Exp $");
#endif
#endif /* not lint */
@ -1004,7 +1004,7 @@ calcsb(const char *dev, int devfd, struct fs *fs)
pfatal("%s: CANNOT FIGURE OUT OLD CYLINDERS PER GROUP\n", dev);
return 0;
}
memcpy(fs, &sblk.b_un.b_fs, sizeof(struct fs));
memcpy(fs, sblk.b_un.b_fs, sizeof(struct fs));
nspf = fs->fs_fsize / geo.dg_secsize;
fs->fs_old_nspf = nspf;
for (fs->fs_fsbtodb = 0, i = nspf; i > 1; i >>= 1)