summaryrefslogtreecommitdiff
path: root/libfusepp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-02-19 00:38:13 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-02-19 00:38:13 +0000
commit782535d80e06abe929632141b51023f2d6a179e4 (patch)
tree8d6588fd1ba586e0c7fc5f07fe5a88f731a31a82 /libfusepp
parentProgram defined config files and sandbox (diff)
downloadnetfs-782535d80e06abe929632141b51023f2d6a179e4.tar.bz2
netfs-782535d80e06abe929632141b51023f2d6a179e4.tar.xz
netfs-782535d80e06abe929632141b51023f2d6a179e4.zip
Fix error message
Diffstat (limited to 'libfusepp')
-rw-r--r--libfusepp/fuseAppBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libfusepp/fuseAppBase.cpp b/libfusepp/fuseAppBase.cpp
index 4e34192..a1ea491 100644
--- a/libfusepp/fuseAppBase.cpp
+++ b/libfusepp/fuseAppBase.cpp
@@ -184,7 +184,7 @@ int FuseAppBase::fallocate(const char *, int, off_t, off_t, struct fuse_file_inf
}
int FuseAppBase::onError(const std::exception & e) throw()
{
- fprintf(stderr, "Unknown exception calling (what: %s)\n", e.what());
+ fprintf(stderr, "Unknown exception (what: %s)\n", e.what());
return -ENOSYS;
}