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

Commit 74521c8f authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder_ndk: forgotten formatting.

A recent CL to add a warning message was missing formatting by accident.

Bug: 111445392
Test: N/A
Change-Id: I453e5354d6859a77e7797fbfb02fec1c17f8447c
parent 7ee24369
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -286,7 +286,10 @@ binder_status_t AIBinder_prepareTransaction(AIBinder* binder, AParcel** in) {
    }

    if (!binder->isRemote()) {
        LOG(WARNING) << "A binder object at " << binder << " is being transacted on, however, this object is in the same process as its proxy. Transacting with this binder is expensive compared to just calling the corresponding functionality in the same process.";
        LOG(WARNING) << "A binder object at " << binder
                     << " is being transacted on, however, this object is in the same process as "
                        "its proxy. Transacting with this binder is expensive compared to just "
                        "calling the corresponding functionality in the same process.";
    }

    *in = new AParcel(binder);