diff options
author | 2001-12-07 00:11:53 +0000 | |
---|---|---|
committer | 2001-12-07 00:11:53 +0000 | |
commit | ca9f9b2556b77ae91aee23d22fe13df72d500046 (patch) | |
tree | b4636f42c01f58ff3f98f04efeb28abe004851da | |
parent | Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org> (diff) | |
download | wireguard-openbsd-ca9f9b2556b77ae91aee23d22fe13df72d500046.tar.xz wireguard-openbsd-ca9f9b2556b77ae91aee23d22fe13df72d500046.zip |
Make vnds larger than 2G work, mostly by Daniel Lucq <daniel@lucq.org>.
-rw-r--r-- | usr.sbin/vnconfig/vnconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/vnconfig/vnconfig.c b/usr.sbin/vnconfig/vnconfig.c index 143367abe54..6fb22aa2374 100644 --- a/usr.sbin/vnconfig/vnconfig.c +++ b/usr.sbin/vnconfig/vnconfig.c @@ -147,7 +147,7 @@ config(dev, file, action, key) if (rv) warn("VNDIOCSET"); else if (verbose) - printf("%s: %d bytes on %s\n", dev, vndio.vnd_size, + printf("%s: %llu bytes on %s\n", dev, vndio.vnd_size, file); } |