diff options
author | 2013-09-21 22:21:14 +0000 | |
---|---|---|
committer | 2013-09-21 22:21:14 +0000 | |
commit | 95f1e82d6a14f4dc02330fec7fa1003fa1ec6aa7 (patch) | |
tree | 37d0158b7f12d346cadbdd8397f1f68cd4b99fc9 | |
parent | Grok ELF files. Good enough to netboot kernels on AV530 again. (diff) | |
download | wireguard-openbsd-95f1e82d6a14f4dc02330fec7fa1003fa1ec6aa7.tar.xz wireguard-openbsd-95f1e82d6a14f4dc02330fec7fa1003fa1ec6aa7.zip |
Fix an ino_t inconsistency in libfuse. This commit unbreak
the build for libfuse.
ok guenther@
-rw-r--r-- | lib/libfuse/fuse_subr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libfuse/fuse_subr.c b/lib/libfuse/fuse_subr.c index 08ddda1d130..43d8039dcf4 100644 --- a/lib/libfuse/fuse_subr.c +++ b/lib/libfuse/fuse_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fuse_subr.c,v 1.3 2013/08/10 00:30:43 syl Exp $ */ +/* $OpenBSD: fuse_subr.c,v 1.4 2013/09/21 22:21:14 syl Exp $ */ /* * Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com> * @@ -51,8 +51,9 @@ set_vn(struct fuse *f, struct fuse_vnode *v) struct fuse_vn_head *vn_head; struct fuse_vnode *vn; - DPRINTF("%s: create or update vnode %i%i = %s\n", __func__, v->ino, - v->parent, v->path); + DPRINTF("%s: create or update vnode %llu@%llu = %s\n", __func__, + (unsigned long long)v->ino, (unsigned long long)v->parent, + v->path); if (tree_set(&f->vnode_tree, v->ino, v) == NULL) return (0); |