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 */
|
||||
s << "[ ";
|
||||
for (const auto& devid : device_numbers)
|
||||
s << devid << ', ';
|
||||
s << devid << ", ";
|
||||
s << ']';
|
||||
|
||||
devids = std::move(s).str();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue