We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e57e1c commit 84ae200Copy full SHA for 84ae200
src/main.cpp
@@ -2,6 +2,7 @@
2
#include "messmer/fspp/fuse/Fuse.h"
3
#include "messmer/fspp/impl/FilesystemImpl.h"
4
#include "CopyDevice.h"
5
+#include <iostream>
6
7
using cpputils::TempDir;
8
using copyfs::CopyDevice;
@@ -14,7 +15,7 @@ int main (int argc, char *argv[])
14
15
CopyDevice device(dir.path().c_str());
16
FilesystemImpl fsimpl(&device);
17
Fuse fuse(&fsimpl);
- printf("CopyFS initialized\nBase directory: %s\n", dir.path().c_str());
18
+ std::cout << "CopyFS initialized\nBase directory: " << dir.path().c_str() << std::endl;
19
fuse.run(argc, argv);
20
return 0;
21
}
0 commit comments