Add missing parenthesis in init log message.

Change-Id: Iddcd8a002bfc692b1e70d59fa8c6530306c500fa
This commit is contained in:
Elliott Hughes 2015-03-23 08:07:19 -07:00
parent 1d792dd416
commit 930974cedf
1 changed files with 1 additions and 1 deletions

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 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;
}