diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-30 05:33:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-30 05:33:18 +0000 |
commit | aace70c6c17074cf91b772805c704634298fb65d (patch) | |
tree | 152cca01d11b106e9e1e6f8c69882511e0777316 /sys/arch/amd64 | |
parent | 5abfd79ac19feead6f876e085f7723c70b55ac02 (diff) |
savecore(8) wants dumpmag to be an unsigned long.
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index ca00b33cfdc..9eb19661643 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.85 2008/11/22 18:12:32 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.86 2008/12/30 05:33:15 miod Exp $ */ /* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */ /*- @@ -822,7 +822,7 @@ haltsys: /* * These variables are needed by /sbin/savecore */ -u_int32_t dumpmag = 0x8fca0101; /* magic number */ +u_long dumpmag = 0x8fca0101; /* magic number */ int dumpsize = 0; /* pages */ long dumplo = 0; /* blocks */ |