diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-14 17:53:11 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-14 17:53:11 +0000 |
| commit | a45a88e2ac7a4c2825bae5455f65377301ca0c89 (patch) | |
| tree | 82238197e4d4221e850d044079ccb205e8f191f0 | |
| parent | Remove python 2 stuff (diff) | |
| download | SyncRNG-a45a88e2ac7a4c2825bae5455f65377301ca0c89.tar.gz SyncRNG-a45a88e2ac7a4c2825bae5455f65377301ca0c89.zip | |
fix typo in callmethoddef for R
Not sure how this ever worked, but okay.
| -rw-r--r-- | R/src/syncrng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/src/syncrng.c b/R/src/syncrng.c index 431a65a..d25d6cf 100644 --- a/R/src/syncrng.c +++ b/R/src/syncrng.c @@ -114,7 +114,7 @@ SEXP R_syncrng_rand(SEXP state); R_CallMethodDef callMethods[] = { {"R_syncrng_seed", (DL_FUNC) &R_syncrng_seed, 1}, - {"R_syncrng_rand", (DL_FUNC) &R_syncrng_seed, 1}, + {"R_syncrng_rand", (DL_FUNC) &R_syncrng_rand, 1}, {NULL, NULL, 0} }; R_CMethodDef cMethods[] = { |
