aboutsummaryrefslogtreecommitdiff
path: root/LocalFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LocalFile.cpp')
-rw-r--r--LocalFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LocalFile.cpp b/LocalFile.cpp
index bdc25ab..d5bad67 100644
--- a/LocalFile.cpp
+++ b/LocalFile.cpp
@@ -13,7 +13,7 @@ void LocalFile::open(const std::string url) {
this->file = new std::ifstream(path, std::ios::in);
if (this->file->fail() || !this->file->is_open())
- throw Exception("Cannot open file://%s\n", path.c_str());
+ throw Exception("cannot open file://%s\n", path.c_str());
}
void LocalFile::close() {