summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-03-21 02:10:51 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-03-21 02:10:51 +0000
commitab3f7d69f97bc3b2d8d6262e877e4f8a0386e373 (patch)
treeb8fd8098b87b9751b09517a83fc932c8e8d9a02d /sys/arch/i386
parented2a36aac4df246b73c1621bde0a5b04f072365d (diff)
Yet more DDB type correctness
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/db_trace.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/i386/i386/db_trace.c b/sys/arch/i386/i386/db_trace.c
index 2a4acc02337..d841bec0513 100644
--- a/sys/arch/i386/i386/db_trace.c
+++ b/sys/arch/i386/i386/db_trace.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_trace.c,v 1.3 1996/05/07 07:21:35 deraadt Exp $ */
+/* $OpenBSD: db_trace.c,v 1.4 1997/03/21 02:10:42 niklas Exp $ */
/* $NetBSD: db_trace.c,v 1.18 1996/05/03 19:42:01 christos Exp $ */
/*
@@ -43,20 +43,20 @@
* Machine register set.
*/
struct db_variable db_regs[] = {
- { "es", &ddb_regs.tf_es, FCN_NULL },
- { "ds", &ddb_regs.tf_ds, FCN_NULL },
- { "edi", &ddb_regs.tf_edi, FCN_NULL },
- { "esi", &ddb_regs.tf_esi, FCN_NULL },
- { "ebp", &ddb_regs.tf_ebp, FCN_NULL },
- { "ebx", &ddb_regs.tf_ebx, FCN_NULL },
- { "edx", &ddb_regs.tf_edx, FCN_NULL },
- { "ecx", &ddb_regs.tf_ecx, FCN_NULL },
- { "eax", &ddb_regs.tf_eax, FCN_NULL },
- { "eip", &ddb_regs.tf_eip, FCN_NULL },
- { "cs", &ddb_regs.tf_cs, FCN_NULL },
- { "eflags", &ddb_regs.tf_eflags, FCN_NULL },
- { "esp", &ddb_regs.tf_esp, FCN_NULL },
- { "ss", &ddb_regs.tf_ss, FCN_NULL },
+ { "es", (long *)&ddb_regs.tf_es, FCN_NULL },
+ { "ds", (long *)&ddb_regs.tf_ds, FCN_NULL },
+ { "edi", (long *)&ddb_regs.tf_edi, FCN_NULL },
+ { "esi", (long *)&ddb_regs.tf_esi, FCN_NULL },
+ { "ebp", (long *)&ddb_regs.tf_ebp, FCN_NULL },
+ { "ebx", (long *)&ddb_regs.tf_ebx, FCN_NULL },
+ { "edx", (long *)&ddb_regs.tf_edx, FCN_NULL },
+ { "ecx", (long *)&ddb_regs.tf_ecx, FCN_NULL },
+ { "eax", (long *)&ddb_regs.tf_eax, FCN_NULL },
+ { "eip", (long *)&ddb_regs.tf_eip, FCN_NULL },
+ { "cs", (long *)&ddb_regs.tf_cs, FCN_NULL },
+ { "eflags", (long *)&ddb_regs.tf_eflags, FCN_NULL },
+ { "esp", (long *)&ddb_regs.tf_esp, FCN_NULL },
+ { "ss", (long *)&ddb_regs.tf_ss, FCN_NULL },
};
struct db_variable *db_eregs = db_regs + sizeof(db_regs)/sizeof(db_regs[0]);