aboutsummaryrefslogtreecommitdiffstats
path: root/example/passthrough_hp.cc
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2023-03-29 14:47:13 -0400
committerGitHub <noreply@github.com>2023-03-29 19:47:13 +0100
commit0f8cb2888311868be83c208fef26d2139af41712 (patch)
tree9327f7ae13fc2c6907e8eb21051e94bf0ebeab21 /example/passthrough_hp.cc
parented9be128370c93b93895bb1bb61cc1e606277613 (diff)
downloadlibfuse-0f8cb2888311868be83c208fef26d2139af41712.tar.gz
Fix typos and configure spellcheck for PRs
Diffstat (limited to 'example/passthrough_hp.cc')
-rw-r--r--example/passthrough_hp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc
index 26fa42e..a0480e5 100644
--- a/example/passthrough_hp.cc
+++ b/example/passthrough_hp.cc
@@ -201,7 +201,7 @@ static void sfs_init(void *userdata, fuse_conn_info *conn) {
// FUSE_CAP_SPLICE_READ is enabled in libfuse3 by default,
// see do_init() in in fuse_lowlevel.c
// Just unset both, in case FUSE_CAP_SPLICE_WRITE would also get enabled
- // by detault.
+ // by default.
conn->want &= ~FUSE_CAP_SPLICE_READ;
conn->want &= ~FUSE_CAP_SPLICE_WRITE;
} else {