diff options
| author | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2007-12-04 20:33:58 +0000 |
|---|---|---|
| committer | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2007-12-04 20:33:58 +0000 |
| commit | 997714346777ebe967a859f77b5f8dd64bdcfc71 (patch) | |
| tree | a9bb302ccad3cf479f31861fd170666fa2e94580 /sys/dev/ipw | |
| parent | 959a913b87a6304fbfd15d181dd5ed7cb928e799 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ipw')
| -rw-r--r-- | sys/dev/ipw/if_ipw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ipw/if_ipw.c b/sys/dev/ipw/if_ipw.c index 7150ac4bb261..2f16feb788e2 100644 --- a/sys/dev/ipw/if_ipw.c +++ b/sys/dev/ipw/if_ipw.c @@ -1488,7 +1488,7 @@ ipw_cmd(struct ipw_softc *sc, uint32_t type, void *data, uint32_t len) if (ipw_debug >= 9 && len > 0) { printf(" data: 0x"); for (int i = 1; i <= len; i++) - printf("%1D", (char *)data + len - i, ""); + printf("%1D", (u_char *)data + len - i, ""); } printf("\n"); } |
