libsemanage: add missing include to boolean_record.c

It uses asprintf(3), but doesn't directly include <stdio.h> - fix it.

Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
This commit is contained in:
Ondrej Mosnacek 2022-02-03 17:53:22 +01:00 committed by James Carter
parent 86cdb9f119
commit 6f9e771987

View File

@ -7,6 +7,9 @@
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sepol/boolean_record.h>
typedef sepol_bool_t semanage_bool_t;
@ -20,7 +23,6 @@ typedef semanage_bool_key_t record_key_t;
#include "boolean_internal.h"
#include "handle.h"
#include "database.h"
#include <stdlib.h>
#include <selinux/selinux.h>
/* Key */