diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-02-19 00:38:13 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-06 00:40:49 +0100 |
commit | 3242322e92c841cab905f0352a65b695a318ecd3 (patch) | |
tree | 8d6588fd1ba586e0c7fc5f07fe5a88f731a31a82 | |
parent | Program defined config files and sandbox (diff) | |
download | netfs-3242322e92c841cab905f0352a65b695a318ecd3.tar.bz2 netfs-3242322e92c841cab905f0352a65b695a318ecd3.tar.xz netfs-3242322e92c841cab905f0352a65b695a318ecd3.zip |
Fix error message
-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; } |