From 2d9fad4f529afe48f36d61b29dd040e6d411ae96 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 26 Nov 2019 14:53:37 -0800 Subject: [PATCH] fixed minor VS warning, on parameter difference complaining about a `const` property on one side but not the other. --- programs/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/util.h b/programs/util.h index 42978b95..27f5d5a0 100644 --- a/programs/util.h +++ b/programs/util.h @@ -131,7 +131,7 @@ int UTIL_isFIFO(const char* infilename); #define UTIL_FILESIZE_UNKNOWN ((U64)(-1)) U64 UTIL_getFileSize(const char* infilename); -U64 UTIL_getTotalFileSize(const char* const * const fileNamesTable, unsigned nbFiles); +U64 UTIL_getTotalFileSize(const char* const * fileNamesTable, unsigned nbFiles); int UTIL_getFileStat(const char* infilename, stat_t* statbuf); int UTIL_setFileStat(const char* filename, stat_t* statbuf); int UTIL_chmod(char const* filename, mode_t permissions); /*< like chmod, but avoid changing permission of /dev/null */