From 814bef932f4625a82a271358cbf1d079129dc036 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sun, 21 May 2023 13:35:56 +0000 Subject: [PATCH] Fix warning about integer size mismatch. --- src/Runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runtime.c b/src/Runtime.c index 9eb6683..e5218ba 100644 --- a/src/Runtime.c +++ b/src/Runtime.c @@ -77,7 +77,7 @@ GenerateMemoryReport(int argc, char **argv) time_t currentTime; struct tm *timeInfo; char tsBuffer[1024]; - size_t i; + int i; if (!MemoryAllocated()) {