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:
Leah Rowe
2026-04-01 17:33:01 +01:00
parent c48a962eaf
commit 249ae57c29
+1 -1
View File
@@ -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 |