diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2023-05-31 16:33:01 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2023-05-31 16:33:01 -0400 | 
| commit | b11b53b72cebe85b0fd2a6c8e18c0aca3cf16430 (patch) | |
| tree | d2ea836f9ed9afe3d12d5a08adc65d942f978c72 /indra/newview | |
| parent | 626bbe5032cab1fd2641ad02443e421567e7cce5 (diff) | |
SL-18330: Change to strip_deprecated_header(size_t* header_size)
from U32*.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llmeshrepository.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 18420a2356..3e7f79b60a 100644 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -1861,8 +1861,8 @@ EMeshProcessingResult LLMeshRepoThread::headerReceived(const LLVolumeParams& mes  {  	const LLUUID mesh_id = mesh_params.getSculptID();  	LLSD header; -	 -	U32 header_size = 0; + +	size_t header_size = 0;  	if (data_size > 0)  	{  		llssize dsize = data_size; | 
