mirror of
				https://github.com/eledio-devices/thirdparty-miniz.git
				synced 2025-10-31 00:32:38 +01:00 
			
		
		
		
	Minor formatting fix
This commit is contained in:
		| @@ -146,7 +146,7 @@ extern "C" { | |||||||
|     {                                                                                                                               \ |     {                                                                                                                               \ | ||||||
|         int temp;                                                                                                                   \ |         int temp;                                                                                                                   \ | ||||||
|         mz_uint code_len, c;                                                                                                        \ |         mz_uint code_len, c;                                                                                                        \ | ||||||
|         mz_int16 *pTreeDec;                                                                                                            \ |         mz_int16 *pTreeDec;                                                                                                         \ | ||||||
|         if (num_bits < 15)                                                                                                          \ |         if (num_bits < 15)                                                                                                          \ | ||||||
|         {                                                                                                                           \ |         {                                                                                                                           \ | ||||||
|             if ((pIn_buf_end - pIn_buf_cur) < 2)                                                                                    \ |             if ((pIn_buf_end - pIn_buf_cur) < 2)                                                                                    \ | ||||||
| @@ -164,11 +164,11 @@ extern "C" { | |||||||
|             code_len = temp >> 9, temp &= 511;                                                                                      \ |             code_len = temp >> 9, temp &= 511;                                                                                      \ | ||||||
|         else                                                                                                                        \ |         else                                                                                                                        \ | ||||||
|         {                                                                                                                           \ |         {                                                                                                                           \ | ||||||
|             pTreeDec = (pHuff)->m_pTree;                                                                                               \ |             pTreeDec = (pHuff)->m_pTree;                                                                                            \ | ||||||
|             code_len = TINFL_FAST_LOOKUP_BITS;                                                                                      \ |             code_len = TINFL_FAST_LOOKUP_BITS;                                                                                      \ | ||||||
|             do                                                                                                                      \ |             do                                                                                                                      \ | ||||||
|             {                                                                                                                       \ |             {                                                                                                                       \ | ||||||
|                 temp = pTreeDec[~temp + ((bit_buf >> code_len++) & 1)];                                                                \ |                 temp = pTreeDec[~temp + ((bit_buf >> code_len++) & 1)];                                                             \ | ||||||
|             } while (temp < 0);                                                                                                     \ |             } while (temp < 0);                                                                                                     \ | ||||||
|         }                                                                                                                           \ |         }                                                                                                                           \ | ||||||
|         sym = temp;                                                                                                                 \ |         sym = temp;                                                                                                                 \ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user