diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:49:35 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:49:35 -0500 |
commit | da28d64d45984364b6cd08ed5fb9324998cf496b (patch) | |
tree | 25275848c407d5fcab7ec4470cfb0e7a87263b36 /src | |
parent | 01584a2f230b8e9a5367580cb5f457692df347dd (diff) | |
download | c++-da28d64d45984364b6cd08ed5fb9324998cf496b.tar.gz c++-da28d64d45984364b6cd08ed5fb9324998cf496b.tar.bz2 c++-da28d64d45984364b6cd08ed5fb9324998cf496b.zip |
fixed rng free
Diffstat (limited to 'src')
-rw-r--r-- | src/wolff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wolff.c b/src/wolff.c index d577b00..67c05a5 100644 --- a/src/wolff.c +++ b/src/wolff.c @@ -182,6 +182,7 @@ int main(int argc, char *argv[]) { free(s); free(H); graph_free(h); + gsl_rng_free(r); return 0; } |