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

Commit 539d5b5b authored by Michał Narajowski's avatar Michał Narajowski
Browse files

le_audio: Fix badly formatted dupsys character

Changing the fill characted from 0xA0 (NBSP) to 0x20 (space) fixes the
issue.

Bug: 276778256
Test: manual
Tag: #feature
Change-Id: I1ecfbe7ea9e1cd6b10883b170e718a57ec726966
parent 10e396c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2743,7 +2743,7 @@ void LeAudioDevice::Dump(int fd) {
    stream
        << "id  active dir     cis_id  cis_handle  sdu  latency rtn  state";
    for (auto& ase : ases_) {
      stream << std::setfill('\xA0') << "\n\t" << std::left << std::setw(4)
      stream << std::setfill('\x20') << "\n\t" << std::left << std::setw(4)
             << static_cast<int>(ase.id) << std::left << std::setw(7)
             << (ase.active ? "true" : "false") << std::left << std::setw(8)
             << (ase.direction == types::kLeAudioDirectionSink ? "sink"