summaryrefslogtreecommitdiff
path: root/tools/files.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/files.cpp')
-rw-r--r--tools/files.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/files.cpp b/tools/files.cpp
index 2cbda12..5adcdae 100644
--- a/tools/files.cpp
+++ b/tools/files.cpp
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "client/gridfs.h"
#include "client/dbclient.h"
@@ -140,14 +140,14 @@ public:
}
conn().getLastError();
- cout << "done!";
+ cout << "done!" << endl;
return 0;
}
if ( cmd == "delete" ){
g.removeFile(filename);
conn().getLastError();
- cout << "done!";
+ cout << "done!" << endl;
return 0;
}