1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-24 15:55:41 -05:00

Use uint8_t

This commit is contained in:
Alex Kotov 2021-12-18 00:22:28 +05:00
parent 25bd21be67
commit 086e4bbc07
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -7,6 +7,7 @@ extern "C" {
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#define KERNAUX_PFA_PAGE_SIZE (4 * 1024)
#define KERNAUX_PFA_PAGES_COUNT_MAX (1024 * 1024)
@ -15,7 +16,7 @@ extern "C" {
typedef struct KernAux_PFA *KernAux_PFA;
struct KernAux_PFA {
unsigned char flags[KERNAUX_PFA_FLAGS_SIZE];
uint8_t flags[KERNAUX_PFA_FLAGS_SIZE];
};
void KernAux_PFA_initialize(KernAux_PFA pfa);