diff options
author | Mike Dirolf <mike@10gen.com> | 2009-09-21 12:43:45 -0400 |
---|---|---|
committer | Mike Dirolf <mike@10gen.com> | 2009-09-21 12:43:45 -0400 |
commit | be84f053562131e261dcda25d1d7aefe923fc06a (patch) | |
tree | 16bdb0fca5aa754b20cede717d721abf8f4b71d1 /dbtests/framework.cpp | |
parent | f20838c3f3c46a12a328f9656fce5090e7389144 (diff) | |
download | mongo-be84f053562131e261dcda25d1d7aefe923fc06a.tar.gz |
minor: more compatibility for old versions of boost
Diffstat (limited to 'dbtests/framework.cpp')
-rw-r--r-- | dbtests/framework.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbtests/framework.cpp b/dbtests/framework.cpp index e43c299cff8..0f42b4f451f 100644 --- a/dbtests/framework.cpp +++ b/dbtests/framework.cpp @@ -165,7 +165,7 @@ namespace mongo { /* remove the contents of the test directory if it exists. */ if (boost::filesystem::exists(p)) { if (!boost::filesystem::is_directory(p)) { - cout << "ERROR: path \"" << p << "\" is not a directory" << endl << endl; + cout << "ERROR: path \"" << p.string() << "\" is not a directory" << endl << endl; show_help_text(argv[0], shell_options); return EXIT_BADOPTIONS; } |