diff options
author | Andreas Enge <andreas@enge.fr> | 2025-06-24 21:04:02 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-06-25 14:33:26 +0200 |
commit | 3eb03534e687d06753a41842860d1742ac2296a3 (patch) | |
tree | 09cb38a8e38d5fbc9285ef69c061e12da1b35ab9 | |
parent | b2e473f9344c805ab7690923b6075d86f6e36d56 (diff) |
daemon: Fix build with gcc-14.
* nix/libutil/seccomp.hh: Include cstdint.
Change-Id: I454c7abd56abbe4cf03a5bc8ebc402678e07a0f0
-rw-r--r-- | nix/libutil/seccomp.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/libutil/seccomp.hh b/nix/libutil/seccomp.hh index 634dfad5f8..583500b094 100644 --- a/nix/libutil/seccomp.hh +++ b/nix/libutil/seccomp.hh @@ -1,6 +1,7 @@ #pragma once #include "util.hh" +#include <cstdint> #include <linux/audit.h> /* For AUDIT_ARCH_* */ #include <linux/seccomp.h> #include <linux/filter.h> |