SDL_ttf: testapp: fix -Wold-style-declaration warning

From 3b77d7cba1932f7bc724815d0a901d46d91ecfeb Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 5 Jun 2023 03:49:54 +0200
Subject: [PATCH] testapp: fix -Wold-style-declaration warning

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

diff --git a/testapp.c b/testapp.c
index 9f72031..ef2c822 100644
--- a/testapp.c
+++ b/testapp.c
@@ -31,7 +31,7 @@
  *
  */
 
-const static int g_force_no_SDF = 0; /* make random fuzzer faster by disabling SDF rendering */
+static const int g_force_no_SDF = 0; /* make random fuzzer faster by disabling SDF rendering */
 
 #include <stdio.h>
 #include <stdlib.h>