pipewire/spa
Barnabás Pőcze 84b9644ee3 spa: utils: defs: fix SPA_FOR_EACH_ELEMENT usage example
To iterate over an array of `T`, the iterator must be `(const) T *`,
so that the types are compatible when `T[]` decays into `T *`.

In the example when `struct foo *[]` decays, it becomes `struct foo **`,
which is not compatible with the the type of iterator, `struct foo *`.

Fix that by changing the type of the array to `struct foo[]`.
2021-06-28 15:07:02 +02:00
..
examples meson.build: add -D_GNU_SOURCE to the project arguments 2021-06-09 07:47:51 +00:00
include spa: utils: defs: fix SPA_FOR_EACH_ELEMENT usage example 2021-06-28 15:07:02 +02:00
plugins v4l2: DmaBuf and MemFd are mostly the same 2021-06-28 14:55:05 +02:00
tests spa: tests: remove double dot from names of test files 2021-06-16 19:45:27 +02:00
tools json: don't escape / 2021-06-24 16:18:59 +02:00
meson.build spa: meson.build: look for libcamera under another name 2021-06-27 18:24:15 +00:00