mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
lbutils/file: fix implicit conversion on openat2
as dictated by clang -Weverything Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -622,7 +622,7 @@ openat_on_eintr(int dirfd, const char *path,
|
||||
int flags, mode_t mode)
|
||||
{
|
||||
struct open_how how = {
|
||||
.flags = flags,
|
||||
.flags = (unsigned long long)flags,
|
||||
.mode = mode,
|
||||
.resolve =
|
||||
RESOLVE_BENEATH |
|
||||
|
||||
Reference in New Issue
Block a user