diff options
author | Elliott Hughes <enh@google.com> | 2015-03-23 08:07:19 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-03-23 08:07:19 -0700 |
commit | 930974cedf7d07a789f5d3d77f14abd2d0ed7d79 (patch) | |
tree | dfcef492127cba3779279cccf568e3626fe8fe6c /init | |
parent | 1d792dd4161728240e23f21aceaff74070b24c7e (diff) | |
download | system_core-930974cedf7d07a789f5d3d77f14abd2d0ed7d79.zip system_core-930974cedf7d07a789f5d3d77f14abd2d0ed7d79.tar.gz system_core-930974cedf7d07a789f5d3d77f14abd2d0ed7d79.tar.bz2 |
Add missing parenthesis in init log message.
Change-Id: Iddcd8a002bfc692b1e70d59fa8c6530306c500fa
Diffstat (limited to 'init')
-rw-r--r-- | init/property_service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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; } |