From a92536253418e1e406c21269d87bb511edea3ee9 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 3 Aug 2022 20:52:15 +0200 Subject: [PATCH] minor : fixed missing include I presume it was not detected before because "fileio.h" is probably always included after "util.h". --- programs/fileio.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/programs/fileio.h b/programs/fileio.h index 0920f7228..9fdf8e0ed 100644 --- a/programs/fileio.h +++ b/programs/fileio.h @@ -12,8 +12,9 @@ #ifndef FILEIO_H_23981798732 #define FILEIO_H_23981798732 -#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressionParameters */ #include "fileio_types.h" +#include "util.h" /* FileNamesTable */ +#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressionParameters */ #include "../lib/zstd.h" /* ZSTD_* */ #if defined (__cplusplus)