summaryrefslogtreecommitdiff
path: root/sys/arch/sgi
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-12-30 05:33:18 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-12-30 05:33:18 +0000
commitaace70c6c17074cf91b772805c704634298fb65d (patch)
tree152cca01d11b106e9e1e6f8c69882511e0777316 /sys/arch/sgi
parent5abfd79ac19feead6f876e085f7723c70b55ac02 (diff)
savecore(8) wants dumpmag to be an unsigned long.
Diffstat (limited to 'sys/arch/sgi')
-rw-r--r--sys/arch/sgi/sgi/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/sgi/machdep.c b/sys/arch/sgi/sgi/machdep.c
index a0c11ddab46..cdcf9d89c21 100644
--- a/sys/arch/sgi/sgi/machdep.c
+++ b/sys/arch/sgi/sgi/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.60 2008/05/18 07:36:10 jsing Exp $ */
+/* $OpenBSD: machdep.c,v 1.61 2008/12/30 05:33:17 miod Exp $ */
/*
* Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -852,7 +852,7 @@ haltsys:
/*NOTREACHED*/
}
-int dumpmag = (int)0x8fca0101; /* Magic number for savecore. */
+u_long dumpmag = 0x8fca0101; /* Magic number for savecore. */
int dumpsize = 0; /* Also for savecore. */
long dumplo = 0;