Skip to content

Commit 26498e6

Browse files
committed
fix: fix accidentally imported RNG_INTEGER() call from igraph
1 parent 5e0d68b commit 26498e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "plfit_mt.h"
1616

1717
static uint16_t get_random_uint16() {
18-
return RNG_INTEGER(0, 0xffff);
18+
return rand();
1919
}
2020

2121
void plfit_mt_init(plfit_mt_rng_t* rng) {

0 commit comments

Comments
 (0)