summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview')
-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