diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-12-31 08:13:13 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-04 14:56:37 +0000 |
commit | 3a0355a8bc068aa3dbcc19cc74826b14505c8f61 (patch) | |
tree | 6fc4f7720aad3f6d99220f3ae62f90c17ee49de5 /src/security/memory | |
parent | 5ca0015dc56db52062f5341f06c774abbb138f26 (diff) |
security/memory/memory.c: Include 'stdbool' instead of 'stdint'
Change-Id: I4eac157c8b48c1c10178bb84822b6462c245deca
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60550
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'src/security/memory')
-rw-r--r-- | src/security/memory/memory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/security/memory/memory.c b/src/security/memory/memory.c index ff4cd1581b..c4f3bdd68f 100644 --- a/src/security/memory/memory.c +++ b/src/security/memory/memory.c @@ -1,7 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <stdint.h> #include <security/intel/txt/txt.h> +#include <stdbool.h> + #include "memory.h" /** |