commit | 0ffd90d26ba5d1451e7e58cb7f62420a54701ede | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Mar 23 15:13:45 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Mar 23 15:13:45 2015 +0000 |
tree | f294f27c838e3bc2a9873347d32beb42bcddc6fc | |
parent | fd26252da2d736236bb1d80fc2e809421f9ffa4d [diff] | |
parent | 930974cedf7d07a789f5d3d77f14abd2d0ed7d79 [diff] |
Merge "Add missing parenthesis in init log message."
diff --git a/init/property_service.cpp b/init/property_service.cpp index 0e03a1d..363b377 100644 --- a/init/property_service.cpp +++ b/init/property_service.cpp
@@ -250,7 +250,7 @@ int property_set(const char* name, const char* value) { int rc = property_set_impl(name, value); if (rc == -1) { - ERROR("property_set(\"%s\", \"%s\" failed\n", name, value); + ERROR("property_set(\"%s\", \"%s\") failed\n", name, value); } return rc; }