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

Commit f653d0ba authored by Jiwen 'Steve' Cai's avatar Jiwen 'Steve' Cai
Browse files

Fix lshal for BufferHub Service

Bug: 122867618
Test: adb shell lshal debug android.frameworks.bufferhub@1.0::IBufferHub
Change-Id: I2cde444b724ec7707e1579c560a362a6d5c6e918
parent e3dbb294
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ Return<void> BufferHubService::debug(const hidl_handle& fd, const hidl_vec<hidl_
    stream << " ";
    stream << std::setw(10) << "State";
    stream << " ";
    stream << std::setw(10) << "Index";
    stream << std::setw(8) << "Index";
    stream << std::endl;

    for (auto iter = clientCount.begin(); iter != clientCount.end(); ++iter) {
@@ -251,6 +251,7 @@ Return<void> BufferHubService::debug(const hidl_handle& fd, const hidl_vec<hidl_
        stream << " ";
        stream << "0x" << std::hex << std::setfill('0');
        stream << std::setw(8) << /*State=*/state;
        stream << std::dec << std::setfill(' ');
        stream << " ";
        stream << std::setw(8) << /*Index=*/index;
        stream << std::endl;