diff options
Diffstat (limited to 'netfs/fuse/fuseConfigImpl.cpp')
-rw-r--r-- | netfs/fuse/fuseConfigImpl.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/netfs/fuse/fuseConfigImpl.cpp b/netfs/fuse/fuseConfigImpl.cpp index fa542fe..9dca813 100644 --- a/netfs/fuse/fuseConfigImpl.cpp +++ b/netfs/fuse/fuseConfigImpl.cpp @@ -2,8 +2,9 @@ #include <fuseConfig.h> AdHocFormatter(ResourceNotFoundMsg, "No such resource: %?"); + void -NetFS::Client::ResourceNotFound::ice_print(std::ostream & s) const +NetFS::Client::ResourceNotFound::ice_print(std::ostream & stream) const { - ResourceNotFoundMsg::write(s, resourceName); + ResourceNotFoundMsg::write(stream, resourceName); } |