summaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-11-05 19:23:25 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-11-05 19:23:25 +0000
commit8165b425234ec3877e794381a9dece431c47f782 (patch)
tree275fa40f1681d85d08afd9530aaabeddeabb3e60 /sys/ddb/db_command.c
parent567a4c7ea07c1f9ef2698ed16bea2cfa0e6d6741 (diff)
temporary ddb buffers need to be a bit larger on 64 bit systems to cope with
some radix configurations.
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r--sys/ddb/db_command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index ee9d2380575..bd91d46ae82 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_command.c,v 1.46 2007/09/01 11:54:03 miod Exp $ */
+/* $OpenBSD: db_command.c,v 1.47 2007/11/05 19:23:24 miod Exp $ */
/* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */
/*
@@ -570,7 +570,7 @@ db_fncall(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
db_expr_t retval;
db_expr_t (*func)(db_expr_t, ...);
int t;
- char tmpfmt[24];
+ char tmpfmt[28];
if (!db_expression(&fn_addr)) {
db_printf("Bad function\n");