Skip to content

Commit

Permalink
ops
Browse files Browse the repository at this point in the history
  • Loading branch information
azimafroozeh committed Sep 11, 2024
1 parent bbb29c5 commit 42b8ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fls/cor/prm/fsst/fsst.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ fsst_decompress(fsst_decoder_t* decoder, /* IN: use this symbol table for compre
pos_out += len[code];
} else {
unsigned long first_escape_pos =
static_cast<unsigned long>(__builtin_ctzl(static_cast<unsigned long long>(escape_mask))) >> 3;
static_cast<unsigned long>(__builtin_ctzl(static_cast<unsigned long>(escape_mask))) >> 3;
switch (first_escape_pos) { /* Duff's device */
case 3:
code = str_in[pos_in++];
Expand Down

0 comments on commit 42b8ef5

Please sign in to comment.