Skip to content

Commit

Permalink
don't return a value from a void function
Browse files Browse the repository at this point in the history
  • Loading branch information
diakopter committed Sep 6, 2013
1 parent 6ea45bb commit d6c977b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/procops.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ MVMnum64 MVM_proc_rand_n(MVMThreadContext *tc) {

/* seed random number generator */
void MVM_proc_seed(MVMThreadContext *tc, MVMint64 seed) {
return tinymt64_init(tc->rand_state, (MVMuint64)seed);
tinymt64_init(tc->rand_state, (MVMuint64)seed);
}

/* gets the system time since the epoch truncated to integral seconds */
Expand Down

0 comments on commit d6c977b

Please sign in to comment.