From b766211e10fd3e148d38e0c1c24043c65a817002 Mon Sep 17 00:00:00 2001 From: Paul Cruz Date: Thu, 15 Jun 2017 15:55:49 -0700 Subject: [PATCH] made another function static --- programs/fileio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/programs/fileio.c b/programs/fileio.c index 09ef1791d..23c8badc6 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -954,7 +954,7 @@ static int getFileInfo(fileInfo_t* info, const char* inFileName){ } } } while (lastBlock != 1); - + if (detectError) { break; } @@ -1001,7 +1001,8 @@ static int getFileInfo(fileInfo_t* info, const char* inFileName){ fclose(srcFile); return detectError; } -void displayInfo(const char* inFileName, fileInfo_t* info, int displayLevel){ + +static void displayInfo(const char* inFileName, fileInfo_t* info, int displayLevel){ double const compressedSizeMB = (double)info->compressedSize/(1 MB); double const decompressedSizeMB = (double)info->decompressedSize/(1 MB); const char* checkString = (info->usesCheck ? "XXH64" : "None");