summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_print.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-07-01 19:42:56 +0000
committerpeter <peter@FreeBSD.org>1999-07-01 19:42:56 +0000
commit700ead8c3e233e085c99817b4950784e1e253ba4 (patch)
treeb710f4062e9adfe34f0bcdee5cce22cb55420591 /sys/ddb/db_print.c
parente1bfba05655a5e21033793ad779ef2e342780b9e (diff)
downloadFreeBSD-src-700ead8c3e233e085c99817b4950784e1e253ba4.zip
FreeBSD-src-700ead8c3e233e085c99817b4950784e1e253ba4.tar.gz
Quiet warnings on Alpha. (db_expr_t is a long on alpha, int on x86)
Diffstat (limited to 'sys/ddb/db_print.c')
-rw-r--r--sys/ddb/db_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c
index 218be1e..a02f992 100644
--- a/sys/ddb/db_print.c
+++ b/sys/ddb/db_print.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_print.c,v 1.23 1998/07/08 10:53:49 bde Exp $
+ * $Id: db_print.c,v 1.24 1999/01/27 23:45:37 dillon Exp $
*/
/*
@@ -59,7 +59,7 @@ db_show_regs(dummy1, dummy2, dummy3, dummy4)
offset != value) {
db_printf("\t%s", name);
if (offset != 0)
- db_printf("+%+#r", offset);
+ db_printf("+%+#lr", (long)offset);
}
db_printf("\n");
}
OpenPOWER on IntegriCloud