From c948034be9c28d6e213c9f1f764a6fc39c0c7691 Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev Date: Thu, 9 Dec 2021 03:10:06 +0200 Subject: SL-16450 gcc compatibility --- indra/newview/llxmlrpclistener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview') diff --git a/indra/newview/llxmlrpclistener.cpp b/indra/newview/llxmlrpclistener.cpp index 8a43c30068..4401f61059 100644 --- a/indra/newview/llxmlrpclistener.cpp +++ b/indra/newview/llxmlrpclistener.cpp @@ -440,7 +440,7 @@ private: LLSD::Binary data; data.resize(len); - memcpy(&data[0], buf, len); + memcpy((void*)&data[0], (void*)buf, len); responses.insert(key, data); } else -- cgit v1.2.3