diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-06-02 12:32:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-06-02 12:32:09 +0000 |
commit | a12a6dbd15cd3189575a546e55547e9fa894bb3c (patch) | |
tree | c9d69a7c2f848a65d30d408ddd5565e8fe428c9d /sys/dev/isa | |
parent | 6a318e862a4a9ae95093da244047c8f5b6ec78af (diff) |
Fix some minor format string problems found in a maze of false positives
provided by Parfait
ok oga
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/fd.c b/sys/dev/isa/fd.c index b5cde05df53..1e8c2f787c4 100644 --- a/sys/dev/isa/fd.c +++ b/sys/dev/isa/fd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fd.c,v 1.75 2008/10/15 19:12:18 blambert Exp $ */ +/* $OpenBSD: fd.c,v 1.76 2009/06/02 12:32:08 deraadt Exp $ */ /* $NetBSD: fd.c,v 1.90 1996/05/12 23:12:03 mycroft Exp $ */ /*- @@ -781,7 +781,7 @@ loop: {int block; block = (fd->sc_cylin * type->heads + head) * type->sectrac + sec; if (block != fd->sc_blkno) { - printf("fdintr: block %d != blkno %d\n", block, fd->sc_blkno); + printf("fdintr: block %d != blkno %llu\n", block, fd->sc_blkno); #ifdef DDB Debugger(); #endif |