From 1bc19dac945bbdfbf9f01edbbf5b72daf32d2c57 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Fri, 26 Jan 2024 13:59:30 -0500
Subject: [PATCH] Eliminate extra semi-colon

---
 src/xpdev/genwrap.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xpdev/genwrap.h b/src/xpdev/genwrap.h
index f369209533..bb7dc4998c 100644
--- a/src/xpdev/genwrap.h
+++ b/src/xpdev/genwrap.h
@@ -365,7 +365,7 @@ DLLEXPORT char*		os_cmdshell(void);
 DLLEXPORT char*		lastchar(const char* str);
 DLLEXPORT int		safe_snprintf(char *dst, size_t size, const char *fmt, ...)
 #if defined(__GNUC__)   // Catch printf-format errors
-    __attribute__ ((format (printf, 3 , 4)));            // 1 is 'this'
+    __attribute__ ((format (printf, 3 , 4)))            // 1 is 'this'
 #endif
 ;
 
-- 
GitLab