diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-02-19 00:38:13 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-02-19 00:38:13 +0000 |
commit | 782535d80e06abe929632141b51023f2d6a179e4 (patch) | |
tree | 8d6588fd1ba586e0c7fc5f07fe5a88f731a31a82 /libfusepp/fuseAppBase.cpp | |
parent | Program defined config files and sandbox (diff) | |
download | netfs-782535d80e06abe929632141b51023f2d6a179e4.tar.bz2 netfs-782535d80e06abe929632141b51023f2d6a179e4.tar.xz netfs-782535d80e06abe929632141b51023f2d6a179e4.zip |
Fix error message
Diffstat (limited to 'libfusepp/fuseAppBase.cpp')
-rw-r--r-- | libfusepp/fuseAppBase.cpp | 2 |
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; } |