diff options
author | Antonin Kral <a.kral@bobek.cz> | 2010-08-11 12:38:57 +0200 |
---|---|---|
committer | Antonin Kral <a.kral@bobek.cz> | 2010-08-11 12:38:57 +0200 |
commit | 7645618fd3914cb8a20561625913c20d49504a49 (patch) | |
tree | 8370f846f58f6d71165b7a0e2eda04648584ec76 /tools/files.cpp | |
parent | 68c73c3c7608b4c87f07440dc3232801720b1168 (diff) | |
download | mongodb-7645618fd3914cb8a20561625913c20d49504a49.tar.gz |
Imported Upstream version 1.6.0
Diffstat (limited to 'tools/files.cpp')
-rw-r--r-- | tools/files.cpp | 6 |
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; } |