diff options
| author | 2019-01-15 22:38:46 +0000 | |
|---|---|---|
| committer | 2019-01-15 22:38:46 +0000 | |
| commit | 0def48a29e185aec64563a339552e8833f1f1ecf (patch) | |
| tree | 36c257a46c0d4a160f9f535faff5736865623371 | |
| parent | a21b9106e339edd281aca4267c89f3e1c5f6f242 (diff) | |
| parent | f653d0ba2b70e6e36bcea1e2547affd902ed188c (diff) | |
Merge "Fix lshal for BufferHub Service"
| -rw-r--r-- | services/bufferhub/BufferHubService.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/bufferhub/BufferHubService.cpp b/services/bufferhub/BufferHubService.cpp index ad49cd62ed..a40443d8d9 100644 --- a/services/bufferhub/BufferHubService.cpp +++ b/services/bufferhub/BufferHubService.cpp @@ -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; |