Commit d3e59dc6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix warning if openat() is not supported

parent 1735628c
...@@ -123,6 +123,7 @@ int vlc_openat (int dir, const char *filename, int flags, ...) ...@@ -123,6 +123,7 @@ int vlc_openat (int dir, const char *filename, int flags, ...)
#else #else
int fd = -1; int fd = -1;
errno = ENOSYS; errno = ENOSYS;
(void) mode;
#endif #endif
LocaleFree (local_name); LocaleFree (local_name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment