diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-08-21 03:02:55 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-08-21 03:02:55 +0000 |
commit | 3fc6cb3e3520c053785b78df16827ccd9e474129 (patch) | |
tree | dea9dc82d60dcd9358f353c92379d02268ad2c39 /sys/dev/ic | |
parent | 252bc60ad6ae617d97682fb77ef7204f621cbeb2 (diff) |
Fix the build when RTWN_DEBUG is defined.
ok kettenis@ stsp@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/rtwn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/rtwn.c b/sys/dev/ic/rtwn.c index 2656636690a..748cbcb22a3 100644 --- a/sys/dev/ic/rtwn.c +++ b/sys/dev/ic/rtwn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtwn.c,v 1.31 2017/08/20 15:05:32 stsp Exp $ */ +/* $OpenBSD: rtwn.c,v 1.32 2017/08/21 03:02:54 jsg Exp $ */ /*- * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr> @@ -526,7 +526,7 @@ rtwn_efuse_read(struct rtwn_softc *sc, uint8_t *rom, size_t size) if (rtwn_debug >= 2) { /* Dump ROM content. */ printf("\n"); - for (i = 0; i < size); i++) + for (i = 0; i < size; i++) printf("%02x:", rom[i]); printf("\n"); } |