diff options
author | 2007-06-07 12:10:07 +0000 | |
---|---|---|
committer | 2007-06-07 12:10:07 +0000 | |
commit | 7feae279b67864a92453d94a287993f13356014d (patch) | |
tree | 0d14b8d55f8952f276b359f453d0d7cc94f471e9 | |
parent | Replace magic bus clock constants in est related files with defines. (diff) | |
download | wireguard-openbsd-7feae279b67864a92453d94a287993f13356014d.tar.xz wireguard-openbsd-7feae279b67864a92453d94a287993f13356014d.zip |
GET should have been SET
-rw-r--r-- | sys/arch/mips64/mips64/disksubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/disksubr.c b/sys/arch/mips64/mips64/disksubr.c index 4b3b12b3ad7..46dbf061db9 100644 --- a/sys/arch/mips64/mips64/disksubr.c +++ b/sys/arch/mips64/mips64/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.46 2007/06/07 02:55:12 krw Exp $ */ +/* $OpenBSD: disksubr.c,v 1.47 2007/06/07 12:10:07 otto Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -311,7 +311,7 @@ donot: DL_SETPOFFSET(pp, letoh32(dp2->dp_start) + part_blkno); - DL_GETPSIZE(pp, letoh32(dp2->dp_size)); + DL_SETPSIZE(pp, letoh32(dp2->dp_size)); switch (dp2->dp_typ) { case DOSPTYP_UNUSED: |