diff options
-rw-r--r-- | sys/kern/kern_timeout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index 009720871d5..3275c88d6b5 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_timeout.c,v 1.37 2013/09/17 04:52:53 guenther Exp $ */ +/* $OpenBSD: kern_timeout.c,v 1.38 2013/10/01 19:36:25 sf Exp $ */ /* * Copyright (c) 2001 Thomas Nordin <nordin@openbsd.org> * Copyright (c) 2000-2001 Artur Grabowski <art@openbsd.org> @@ -391,7 +391,7 @@ db_show_callout_bucket(struct circq *bucket) to = (struct timeout *)p; /* XXX */ db_find_sym_and_offset((db_addr_t)to->to_func, &name, &offset); name = name ? name : "?"; - db_printf("%9d %2d/%-4d %8x %s\n", to->to_time - ticks, + db_printf("%9d %2d/%-4d %p %s\n", to->to_time - ticks, (bucket - timeout_wheel) / WHEELSIZE, bucket - timeout_wheel, to->to_arg, name); } |