summaryrefslogtreecommitdiff
path: root/sys/kern/uipc_debug.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2016-02-02 05:57:59 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2016-02-02 05:57:59 +0000
commit7325dfbb59e38848a70546ab4c6a09d7b676fea7 (patch)
tree1d237b239ea69d18618f1b1b173368ea98474a31 /sys/kern/uipc_debug.c
parent92deafc3a3a9fb9221c49e574db99571b8080a9f (diff)
Notes
Diffstat (limited to 'sys/kern/uipc_debug.c')
-rw-r--r--sys/kern/uipc_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/uipc_debug.c b/sys/kern/uipc_debug.c
index caecad9bac84d..7c8b93cdbd921 100644
--- a/sys/kern/uipc_debug.c
+++ b/sys/kern/uipc_debug.c
@@ -461,9 +461,9 @@ db_print_socket(struct socket *so, const char *socketname, int indent)
db_print_indent(indent);
/* so_list skipped */
- db_printf("so_qlen: %d ", so->so_qlen);
- db_printf("so_incqlen: %d ", so->so_incqlen);
- db_printf("so_qlimit: %d ", so->so_qlimit);
+ db_printf("so_qlen: %u ", so->so_qlen);
+ db_printf("so_incqlen: %u ", so->so_incqlen);
+ db_printf("so_qlimit: %u ", so->so_qlimit);
db_printf("so_timeo: %d ", so->so_timeo);
db_printf("so_error: %d\n", so->so_error);