summaryrefslogtreecommitdiff
path: root/tools/files.cpp
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2010-08-11 12:38:57 +0200
committerAntonin Kral <a.kral@bobek.cz>2010-08-11 12:38:57 +0200
commit7645618fd3914cb8a20561625913c20d49504a49 (patch)
tree8370f846f58f6d71165b7a0e2eda04648584ec76 /tools/files.cpp
parent68c73c3c7608b4c87f07440dc3232801720b1168 (diff)
downloadmongodb-7645618fd3914cb8a20561625913c20d49504a49.tar.gz
Imported Upstream version 1.6.0
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;
}