diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2023-10-10 08:44:23 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-10-10 08:44:23 +0100 |
commit | ef11cf9eace3cf5f529a23899ae850c09aaf64bc (patch) | |
tree | 67f0cbc6d3a1f7fd692097ad0cc90bcc541ec387 | |
parent | 7a92727d97c10290b3501d86a194738973edb61d (diff) | |
download | libfuse-ef11cf9eace3cf5f529a23899ae850c09aaf64bc.tar.gz |
Fix typo in comment
-rw-r--r-- | example/passthrough_hp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index 8524eef..9ee6fb1 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -100,7 +100,7 @@ static void forget_one(fuse_ino_t ino, uint64_t n); // be simplified to just ino_t since we require the source directory // not to contain any mountpoints. This hasn't been done yet in case // we need to reconsider this constraint (but relaxing this would have -// the drawback that we can no longer re-use inode numbers, and thus +// the drawback that we can no longer reuse inode numbers, and thus // readdir() would need to do a full lookup() in order to report the // right inode number). typedef std::pair<ino_t, dev_t> SrcId; |