diff options
author | 2018-07-03 23:23:26 +0000 | |
---|---|---|
committer | 2018-07-03 23:23:26 +0000 | |
commit | 956f72a65fa57f3cce07f44ff84aa64268be9725 (patch) | |
tree | 682d11d627cef2857fc10e614fbdb3a201753caa | |
parent | Add retguard macros for libkern (diff) | |
download | wireguard-openbsd-956f72a65fa57f3cce07f44ff84aa64268be9725.tar.xz wireguard-openbsd-956f72a65fa57f3cce07f44ff84aa64268be9725.zip |
Remove residual debug statements.
-rw-r--r-- | lib/libfuse/fuse.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libfuse/fuse.c b/lib/libfuse/fuse.c index db0fdfa94f0..cc5f8c50c8c 100644 --- a/lib/libfuse/fuse.c +++ b/lib/libfuse/fuse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fuse.c,v 1.47 2018/06/19 13:01:34 helg Exp $ */ +/* $OpenBSD: fuse.c,v 1.48 2018/07/03 23:23:26 helg Exp $ */ /* * Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com> * @@ -253,7 +253,6 @@ fuse_loop(struct fuse *fuse) ioexch.fbxch_data = fbuf.fb_dat; if (ioctl(fuse->fc->fd, FIOCSETFBDAT, &ioexch)) { -printf("libfuse: FIOCSETFBDAT error\n"); free(fbuf.fb_dat); return (-1); } @@ -262,7 +261,6 @@ printf("libfuse: FIOCSETFBDAT error\n"); ictx = NULL; if (n != FUSEBUFSIZE) { -printf("libfuse: write error: %s\n", strerror(errno)); errno = EINVAL; return (-1); } |