Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tools/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@
std::wcout
<< L"===== Device ====="sv << std::endl
<< L"Device ID : "sv << wstring.get() << std::endl
<< L"Device name : "sv << no_null((LPWSTR) device_friendly_name.prop.pszVal) << std::endl
<< L"Adapter name : "sv << no_null((LPWSTR) adapter_friendly_name.prop.pszVal) << std::endl
<< L"Device description : "sv << no_null((LPWSTR) device_desc.prop.pszVal) << std::endl
<< L"Device name : "sv << converter.to_bytes(no_null((LPWSTR) device_friendly_name.prop.pszVal)).c_str() << std::endl
<< L"Adapter name : "sv << converter.to_bytes(no_null((LPWSTR) adapter_friendly_name.prop.pszVal)).c_str() << std::endl
<< L"Device description : "sv << converter.to_bytes(no_null((LPWSTR) device_desc.prop.pszVal)).c_str() << std::endl
<< L"Device state : "sv << device_state_string << std::endl
<< L"Current format : "sv << current_format << std::endl
<< std::endl;
Expand Down
Loading