diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-11 12:12:21 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-11 12:12:21 +0200 |
commit | 611fe41588c328191d9298279d33d7398253d609 (patch) | |
tree | 5861858e1eaf1cd02d293d9084a24ebf73e41876 /src/ban.cpp | |
parent | 8b6cce18cb90014e4e8e4c491b0c06def4982c13 (diff) | |
download | minetest-611fe41588c328191d9298279d33d7398253d609.tar.gz minetest-611fe41588c328191d9298279d33d7398253d609.tar.bz2 minetest-611fe41588c328191d9298279d33d7398253d609.zip |
Fix log output in ban.cpp
Diffstat (limited to 'src/ban.cpp')
-rw-r--r-- | src/ban.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ban.cpp b/src/ban.cpp index 7fa8eb058..cf1b8d667 100644 --- a/src/ban.cpp +++ b/src/ban.cpp @@ -80,7 +80,7 @@ void BanManager::save() if(os.good() == false) { - infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl; + infostream<<"BanManager: failed saving to "<<m_banfilepath<<std::endl; throw SerializationError("BanManager::load(): Couldn't open file"); } |