fix: fix syntax error.

This commit is contained in:
Haojun Liao 2023-11-13 08:57:46 +08:00
parent 78b63ac4f9
commit 3bdee86dea
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,7 @@ int32_t tsDecompressIntImpl_Hw(const char *const input, const int32_t nelements,
int32_t _pos = 0;
int64_t prev_value = 0;
#if __AVX2__
while (1) {
if (_pos == nelements) break;
@ -231,6 +232,7 @@ int32_t tsDecompressIntImpl_Hw(const char *const input, const int32_t nelements,
ip += LONG_BYTES;
}
#endif
return nelements * word_length;
}