Skip to content

Commit 044a37a

Browse files
authored
Fix syntax typo in pcg-64-test-gen.c
1 parent 3398079 commit 044a37a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
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)