summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-12-09 03:10:06 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2021-12-09 03:10:06 +0200
commitc948034be9c28d6e213c9f1f764a6fc39c0c7691 (patch)
treed662c84cdc2937ec740dec67e7282396666d45b3 /indra
parent1f3d744fdfe2781bac1dc3829318809eef3c6309 (diff)
SL-16450 gcc compatibility
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llxmlrpclistener.cpp2
1 files changed, 1 insertions, 1 deletions
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