From c948034be9c28d6e213c9f1f764a6fc39c0c7691 Mon Sep 17 00:00:00 2001
From: Andrey Kleshchev <andreykproductengine@lindenlab.com>
Date: Thu, 9 Dec 2021 03:10:06 +0200
Subject: [PATCH] SL-16450 gcc compatibility

---
 indra/newview/llxmlrpclistener.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llxmlrpclistener.cpp b/indra/newview/llxmlrpclistener.cpp
index 8a43c30068a..4401f610598 100644
--- a/indra/newview/llxmlrpclistener.cpp
+++ b/indra/newview/llxmlrpclistener.cpp
@@ -440,7 +440,7 @@ class Poller
 
                         LLSD::Binary data;
                         data.resize(len);
-                        memcpy(&data[0], buf, len);
+                        memcpy((void*)&data[0], (void*)buf, len);
                         responses.insert(key, data);
                     }
                     else
-- 
GitLab