Fix misleading indentation

Fixes the following warning with clang:
```
1>../../vsimple.c(452,45): warning : misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation]
```
This commit is contained in:
Pavel P
2022-03-09 17:13:21 +03:00
parent 1e8a6f1c1f
commit 9f58944566
5 changed files with 24 additions and 12 deletions

View File

@ -449,7 +449,8 @@ unsigned char *TEMPLATE2(VSDEC, USIZE)(unsigned char *__restrict ip, size_t n, u
unsigned b = ((*ip++) >> 5)+1;
*op = *(unsigned long long *)ip;
if(unlikely(b!=8))
*op &= (1ull<<(b*8))-1; op++; ip += b;
*op &= (1ull<<(b*8))-1;
op++; ip += b;
break;
}
#endif