Skip to content

Commit

Permalink
uuid: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Jan 12, 2024
1 parent 8cc2d04 commit 19ef835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poseidon/base/uuid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ print_partial(char* str) const noexcept
_mm_storeu_si64(str + 15, _mm_bslli_si128(tval, 4));
str[18] = '-';
tval = _mm_unpacklo_epi8(hi, lo);
_mm_storeu_si64(str + 10, _mm_bsrli_si128(tval, 8));
_mm_storeu_si128((__m128i_u*) (str + 2), tval);
str[13] = '-';
_mm_storeu_si64(str + 5, _mm_bsrli_si128(tval, 4));
str[8] = '-';
Expand Down

0 comments on commit 19ef835

Please sign in to comment.