Commit d2738c04 authored by Jisi Liu's avatar Jisi Liu

Add spaces

parent 5a501c64
...@@ -121,7 +121,7 @@ void File::WriteStringToFileOrDie(const string& contents, const string& name) { ...@@ -121,7 +121,7 @@ void File::WriteStringToFileOrDie(const string& contents, const string& name) {
bool File::CreateDir(const string& name, int mode) { bool File::CreateDir(const string& name, int mode) {
if (!name.empty()) { if (!name.empty()) {
GOOGLE_CHECK_OK(name[name.size()-1] != '.'); GOOGLE_CHECK_OK(name[name.size() - 1] != '.');
} }
return mkdir(name.c_str(), mode) == 0; return mkdir(name.c_str(), mode) == 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment