1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

remove extraneous doubled ;s

This commit is contained in:
Ed Maste
2019-08-15 21:17:06 -04:00
parent c9072ee674
commit b81d7cc6a0
5 changed files with 8 additions and 8 deletions

View File

@ -201,7 +201,7 @@ static void DiB_fillNoise(void* buffer, size_t length)
unsigned const prime1 = 2654435761U;
unsigned const prime2 = 2246822519U;
unsigned acc = prime1;
size_t p=0;;
size_t p=0;
for (p=0; p<length; p++) {
acc *= prime2;