Merge "Add missing parenthesis in init log message."

This commit is contained in:
Elliott Hughes 2015-03-23 15:13:45 +00:00 committed by Gerrit Code Review
commit 0ffd90d26b

View file

@ -250,7 +250,7 @@ static int property_set_impl(const char* name, const char* value) {
int property_set(const char* name, const char* value) { int property_set(const char* name, const char* value) {
int rc = property_set_impl(name, value); int rc = property_set_impl(name, value);
if (rc == -1) { if (rc == -1) {
ERROR("property_set(\"%s\", \"%s\" failed\n", name, value); ERROR("property_set(\"%s\", \"%s\") failed\n", name, value);
} }
return rc; return rc;
} }