Skip to content
Snippets Groups Projects

Improve verbose

Merged Loic Hausammann requested to merge add_verbose into master
4 files
+ 44
9
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
2
@@ -172,9 +172,8 @@ static uint64_t SIP64(const id_type *key) {
SIPROUND;
v0 ^= m;
}
const int left = inlen & 7;
uint64_t b = ((uint64_t)inlen) << 56;
switch (left) {
switch (inlen & 7) {
case 7:
b |= ((uint64_t)in[6]) << 48;
break;
Loading