aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2026-06-23 20:48:06 +0000
committerAlan Somers <asomers@FreeBSD.org>2026-06-23 20:48:06 +0000
commit381ebe25f0b9fae5b3470e9c6e0767909e0fa85a (patch)
tree0fe596d16830e9a7662070f84378a45b0709b703
parent5f376d52f2c86fd19e3f774a02c4b0debeb3f2cf (diff)
fusefs: proofread an error message in the tests
Reported by: otis Fixes: 2c1482e3053 ("fusefs: fix a race in the pre-init tests") MFC after: 2 weeks Sponsored by: ConnectWise
-rw-r--r--tests/sys/fs/fusefs/mockfs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sys/fs/fusefs/mockfs.cc b/tests/sys/fs/fusefs/mockfs.cc
index 0e395a4fabb3..5cc7be9df611 100644
--- a/tests/sys/fs/fusefs/mockfs.cc
+++ b/tests/sys/fs/fusefs/mockfs.cc
@@ -1020,7 +1020,7 @@ void MockFS::read_request(mockfs_buf_in &in, ssize_t &res) {
void MockFS::start_service() {
if (pthread_create(&m_daemon_id, NULL, service, (void*)this))
throw(std::system_error(errno, std::system_category(),
- "Couldn't Couldn't start fuse thread"));
+ "Couldn't start fuse thread"));
}
void MockFS::write_response(const mockfs_buf_out &out) {