diff options
| author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-19 15:01:44 +0100 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-19 18:06:08 +0200 | 
| commit | 321f283032688f0feddc696654e86f62af07121a (patch) | |
| tree | d0e75b664fa7756d70ddaa5e9796c1ee38a9d8e8 /indra/llmessage/patch_code.cpp | |
| parent | c2e00c0403b95ef10264807bdbfc3b1e4fdf0921 (diff) | |
Replace remaining BOOL with bool llinventory and llmessage
Diffstat (limited to 'indra/llmessage/patch_code.cpp')
| -rw-r--r-- | indra/llmessage/patch_code.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llmessage/patch_code.cpp b/indra/llmessage/patch_code.cpp index 32f8d80782..c3c3e2b3b3 100644 --- a/indra/llmessage/patch_code.cpp +++ b/indra/llmessage/patch_code.cpp @@ -130,7 +130,7 @@ void code_patch(LLBitPack &bitpack, S32 *patch, S32 postquant)  {  	S32		i, j, patch_size = gPatchSize, wbits = gWordBits;  	S32		temp; -	BOOL	b_eob; +	bool	b_eob;  	if (  (postquant > patch_size*patch_size)  		||(postquant < 0)) @@ -143,16 +143,16 @@ void code_patch(LLBitPack &bitpack, S32 *patch, S32 postquant)  	for (i = 0; i < patch_size*patch_size; i++)  	{ -		b_eob = FALSE; +		b_eob = false;  		temp = patch[i];  		if (!temp)  		{ -			b_eob = TRUE; +			b_eob = true;  			for (j = i; j < patch_size*patch_size - postquant; j++)  			{  				if (patch[j])  				{ -					b_eob = FALSE; +					b_eob = false;  					break;  				}  			}  | 
