mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 01:31:03 +00:00
uvcgadget: silence a maybe-uninitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
6eee4a513b
commit
a566dfd339
1 changed files with 1 additions and 1 deletions
|
@ -769,7 +769,7 @@ configfs_parse_streaming_header (const char *path,
|
||||||
struct dirent **entries;
|
struct dirent **entries;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int n_entries;
|
int n_entries;
|
||||||
int ret;
|
int ret = 0;
|
||||||
|
|
||||||
/* Find all entries corresponding to a format and parse them. */
|
/* Find all entries corresponding to a format and parse them. */
|
||||||
n_entries = scandir (path, &entries, format_filter, alphasort);
|
n_entries = scandir (path, &entries, format_filter, alphasort);
|
||||||
|
|
Loading…
Reference in a new issue