From 4cc876eb10ef4691d31e922615e0724b5f10125b 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. --- Cytoplasm/src/Runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cytoplasm/src/Runtime.c b/Cytoplasm/src/Runtime.c index 9eb6683..e5218ba 100644 --- a/Cytoplasm/src/Runtime.c +++ b/Cytoplasm/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()) {