Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-06 21:49:14 +0000
committerStijn Buys <ingar@osirion.org>2008-02-06 21:49:14 +0000
commit598dba9d17838e92f89bcd3ec78c69cc4ce50044 (patch)
tree08a818d6f4dc6a605baa8ddced6165b7bc72ba1f /src/filesystem
parent884667848ecf043dd2d8c5421250c88931151bd1 (diff)
minor cleanups
Diffstat (limited to 'src/filesystem')
-rw-r--r--src/filesystem/file.cc2
-rw-r--r--src/filesystem/path.cc6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/filesystem/file.cc b/src/filesystem/file.cc
index 1203d5a..f05e60c 100644
--- a/src/filesystem/file.cc
+++ b/src/filesystem/file.cc
@@ -69,5 +69,5 @@ void File::open(const char * filename, ios_base::openmode mode) {
}
}
-} // namespace common
+} // namespace filesystem
diff --git a/src/filesystem/path.cc b/src/filesystem/path.cc
index 44423b0..096825c 100644
--- a/src/filesystem/path.cc
+++ b/src/filesystem/path.cc
@@ -18,13 +18,15 @@ void Path::create(std::string path)
tmp = tmp.substr(0, tmp.size() - 1);
if (!sys::mkdir(tmp.c_str()))
- con_warn << "could not create directory " << tmp << std::endl;
+ // FIXME check error value
+ con_warn << "Could not create directory " << tmp << std::endl;
else
- con_debug << "directory created " << tmp << std::endl;
+ con_debug << "Directory created " << tmp << std::endl;
}
bool Path::exists(std::string path)
{
+ // FIXME make it work
return false;
}