Skip to content

Commit ea9accf

Browse files
authored
Merge pull request #91 from Dapid/patch-1
Fix syntax typo in pcg-64-test-gen.c
2 parents 3398079 + 044a37a commit ea9accf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

randomstate/src/pcg/pcg-64-test-gen.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int main(void)
1111
int i;
1212
pcg128_t seed1 = 42ULL, seed2 = 1ULL;
1313
uint64_t temp;
14-
pcg64_random_t state = {{ 0 ]};
14+
pcg64_random_t state = {{ 0 }};
1515
pcg64_srandom_r(&state, seed1, seed2);
1616
FILE *fp;
1717
fp = fopen("pcg64-testset-1.csv", "w");
@@ -45,4 +45,4 @@ int main(void)
4545
}
4646
fclose(fp);
4747

48-
}
48+
}

0 commit comments

Comments
 (0)