diff options
author | 2013-11-22 03:47:07 +0000 | |
---|---|---|
committer | 2013-11-22 03:47:07 +0000 | |
commit | ecefec519348d04cc270cd704be6e7e525b4a102 (patch) | |
tree | 6a8c0e9b70ab31f4bb69f1ace284e32ece9da253 /sys/dev/softraid_concat.c | |
parent | Keep the flow until last IPsec SA is deleted, if the flow is shared by (diff) | |
download | wireguard-openbsd-ecefec519348d04cc270cd704be6e7e525b4a102.tar.xz wireguard-openbsd-ecefec519348d04cc270cd704be6e7e525b4a102.zip |
Stray missing (long long) on a daddr_t variable being printed.
ok jsing@
Diffstat (limited to 'sys/dev/softraid_concat.c')
-rw-r--r-- | sys/dev/softraid_concat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/softraid_concat.c b/sys/dev/softraid_concat.c index 542f9ee5ea1..5ca40cad47e 100644 --- a/sys/dev/softraid_concat.c +++ b/sys/dev/softraid_concat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid_concat.c,v 1.20 2013/11/21 16:54:46 krw Exp $ */ +/* $OpenBSD: softraid_concat.c,v 1.21 2013/11/22 03:47:07 krw Exp $ */ /* * Copyright (c) 2008 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2011 Joel Sing <jsing@openbsd.org> @@ -112,7 +112,7 @@ sr_concat_rw(struct sr_workunit *wu) DNPRINTF(SR_D_DIS, "%s: %s: front end io: lba %lld size %d\n", DEVNAME(sd->sd_sc), sd->sd_meta->ssd_devname, - blk, xs->datalen); + (long long)blk, xs->datalen); /* All offsets are in bytes. */ lbaoffs = blk << DEV_BSHIFT; |