diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 19:27:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 19:27:46 +0000 |
commit | 65490e3153c0c9eb3300d72beb97f78e4c6f5e74 (patch) | |
tree | 0d22f01c9d634f380292107a32cd81ddae392eb0 /sys/arch/pmax | |
parent | 34a977a4883248c3eecc201b64a2887259f61cfe (diff) |
add missing cast
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r-- | sys/arch/pmax/pmax/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/pmax/machdep.c b/sys/arch/pmax/pmax/machdep.c index d32568af5cc..59b704eb671 100644 --- a/sys/arch/pmax/pmax/machdep.c +++ b/sys/arch/pmax/pmax/machdep.c @@ -1185,7 +1185,7 @@ dumpsys() int error; /* Save registers. */ - savectx(&dumppcb, 0); + savectx((struct user *)&dumppcb, 0); msgbufmapped = 0; if (dumpdev == NODEV) |