Merge branch 'master' of github.com:adamdruppe/arsd

This commit is contained in:
Adam D. Ruppe 2021-09-25 07:52:45 -04:00
commit 4dbaa96c95
1 changed files with 1 additions and 1 deletions

View File

@ -4190,7 +4190,7 @@ public {
if(d.length < 8) return needsMoreData();
foreach(i; 0 .. 8) {
msg.realLength |= d[0] << ((7-i) * 8);
msg.realLength |= ulong(d[0]) << ((7-i) * 8);
d = d[1 .. $];
}
} else {