[FSUTIL] Mark some functions as static (only used in this file)

This commit is contained in:
Hervé Poussineau 2020-02-04 23:29:17 +01:00
parent ff045b2dbe
commit 8649ed90a8

View file

@ -339,7 +339,7 @@ DumpNtfs(PVOID Statistics, PVOID Specific)
#define GET_NEXT(stats, length, iter, type) (type)((ULONG_PTR)stats + (length * iter)) #define GET_NEXT(stats, length, iter, type) (type)((ULONG_PTR)stats + (length * iter))
#define SUM_VALUE(stats, new, value) stats->value += new->value #define SUM_VALUE(stats, new, value) stats->value += new->value
inline int static inline int
ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize) ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize)
{ {
/* Check whether we could read our base length for every processor */ /* Check whether we could read our base length for every processor */
@ -359,7 +359,7 @@ ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize
return 0; return 0;
} }
inline void static inline void
SumBase(PFILESYSTEM_STATISTICS Base, PFILESYSTEM_STATISTICS NextBase) SumBase(PFILESYSTEM_STATISTICS Base, PFILESYSTEM_STATISTICS NextBase)
{ {
/* Sum any entry in the generic structures */ /* Sum any entry in the generic structures */