commit | 1074c6e693b24e00547edffee8da7e1654f55890 | [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 | e4d03bbc8e40662b6e2ecf7c5f9361686e7eddf9 [diff] | |
parent | 5545c1e2d19df3a3c6c03ad864996250dfd547b4 [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; }