diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-16 16:16:58 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-26 06:59:41 +0000 |
| commit | 1ce06b01e0a7413916f7b2aa816955772a3fd3cd (patch) | |
| tree | 45484f75b862eb7693bbb2a70dab594460c5d9ec | |
| parent | 15cbafe20b02adfa72343a537517d417fc1a2dbf (diff) | |
util/nvmutil: fix O_NONBLOCK fallback
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | util/nvmutil/nvmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 58b9fdbf..25953de5 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -305,7 +305,7 @@ typedef char static_assert_off_t_is_32[(sizeof(off_t) >= 4) ? 1 : -1]; #endif #ifndef O_NONBLOCK -#define O_NONBLOCK +#define O_NONBLOCK 0 #endif #ifndef O_CLOEXEC |
