diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-12-09 03:10:06 +0200 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-12-09 03:10:06 +0200 | 
| commit | c948034be9c28d6e213c9f1f764a6fc39c0c7691 (patch) | |
| tree | d662c84cdc2937ec740dec67e7282396666d45b3 /indra/newview | |
| parent | 1f3d744fdfe2781bac1dc3829318809eef3c6309 (diff) | |
SL-16450 gcc compatibility
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llxmlrpclistener.cpp | 2 | 
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 | 
