summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Matthew <jmatthew@cvs.openbsd.org>2018-02-10 05:21:14 +0000
committerJonathan Matthew <jmatthew@cvs.openbsd.org>2018-02-10 05:21:14 +0000
commitd02979485b47a573dd086a214bbd30bce63e5708 (patch)
tree8ed68b58e8eed7801dce0938e4881cd6004a6137
parent10d30db2664ca26a923f6cca8e73bb785e52d307 (diff)
fix build with SDHC_DEBUG defined, no binary change otherwise
-rw-r--r--sys/dev/sdmmc/sdhc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sdmmc/sdhc.c b/sys/dev/sdmmc/sdhc.c
index c242a600d4a..cf5e355c70d 100644
--- a/sys/dev/sdmmc/sdhc.c
+++ b/sys/dev/sdmmc/sdhc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sdhc.c,v 1.55 2017/05/05 15:10:07 kettenis Exp $ */
+/* $OpenBSD: sdhc.c,v 1.56 2018/02/10 05:21:13 jmatthew Exp $ */
/*
* Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -804,7 +804,7 @@ sdhc_start_command(struct sdhc_host *hp, struct sdmmc_command *cmd)
int seg;
int s;
- DPRINTF(1,("%s: start cmd %u arg=%#x data=%#x dlen=%d flags=%#x "
+ DPRINTF(1,("%s: start cmd %u arg=%#x data=%p dlen=%d flags=%#x "
"proc=\"%s\"\n", DEVNAME(hp->sc), cmd->c_opcode, cmd->c_arg,
cmd->c_data, cmd->c_datalen, cmd->c_flags, curproc ?
curproc->p_p->ps_comm : ""));