SDL_ttf: testapp.c: fix integer constant is too large for 'long' type warning

From 22104c88ed535f4c1768563eb9395ecd0efbc999 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 24 Feb 2023 11:40:10 +0300
Subject: [PATCH] testapp.c: fix integer constant is too large for 'long' type
 warning

---
 testapp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testapp.c b/testapp.c
index 7d4964c..c3b81b5 100644
--- a/testapp.c
+++ b/testapp.c
@@ -577,7 +577,7 @@ int main(void)
 #define INIT_VARS           \
     t_sum = 0;              \
     T_sum = 0;              \
-    T_min = 999999999999;   \
+    T_min = 999999999999ULL;\
     count = count_init;     \
 
 #define START_MEASURE                                                                   \