mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-07-08 00:07:04 -04:00
libcamera: fix multi-character character constant warning
This commit is contained in:
parent
78a53b3c8d
commit
696103cda9
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ int emit_info(struct impl *impl, bool full)
|
||||||
/* encode device numbers into a json array */
|
/* encode device numbers into a json array */
|
||||||
s << "[ ";
|
s << "[ ";
|
||||||
for (const auto& devid : device_numbers)
|
for (const auto& devid : device_numbers)
|
||||||
s << devid << ', ';
|
s << devid << ", ";
|
||||||
s << ']';
|
s << ']';
|
||||||
|
|
||||||
devids = std::move(s).str();
|
devids = std::move(s).str();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue