From 4bfe120186d85940d54d1b552df0e7d7a8609cd3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Wed, 7 Feb 2024 16:06:41 -0500
Subject: [PATCH] Silence odd warning... I would expect these to be the same
 type save const, but apparently they're not. *shrug*

---
 src/sexpots/sexpots.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sexpots/sexpots.c b/src/sexpots/sexpots.c
index e9af3a0244..cb8d8256bc 100644
--- a/src/sexpots/sexpots.c
+++ b/src/sexpots/sexpots.c
@@ -203,7 +203,7 @@ static int syslog(int level, char *fmt, ...)
 			NULL,					// no user security identifier
 			1,						// one string
 			0,						// no data
-			&p,						// pointer to string array
+			(LPCSTR*)&p,			// pointer to string array
 			NULL);					// pointer to data
 
     return(retval);
-- 
GitLab