]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/fileutils.cpp
Remove whitespace and minor style changes
[user/henk/code/inspircd.git] / src / fileutils.cpp
index 8a726ba699621f74d4089e4ef7853eca4700529c..731e4ea01a9dd74268532fc1dee39f54b21e1409 100644 (file)
@@ -91,7 +91,7 @@ std::string FileSystem::GetFileName(const std::string& name)
 #ifdef _WIN32
        size_t pos = name.find_last_of("\\/");
 #else
-       size_t pos = name.rfind('/');   
+       size_t pos = name.rfind('/');
 #endif
        return pos == std::string::npos ? name : name.substr(++pos);
 }