Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1df7736e authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am 285be566: am 0ffd90d2: Merge "Add missing parenthesis in init log message."

* commit '285be566':
  Add missing parenthesis in init log message.
parents fb50475b 285be566
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}