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
+1 -1
View File
@@ -571,7 +571,7 @@ static void ZDICT_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;
((unsigned char*)buffer)[p] = (unsigned char)(acc >> 21);