Skip to content

Commit

Permalink
dna4_fill_random: fix fallback constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
kloetzl committed Apr 8, 2023
1 parent d8c56ff commit 74698b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dna4_fill_random.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ dna4_fill_random_generic(char *dest, char *end, uint32_t seed)

#if !defined(__x86_64)
DNA_PUBLIC
char *
dna4_fill_random(const char *begin, const char *end, char *dest)
void
dna4_fill_random(char *begin, char *end, uint32_t seed)
{
return dna4_fill_random_generic(begin, end, dest);
dna4_fill_random_generic(begin, end, seed);
}
#endif

0 comments on commit 74698b4

Please sign in to comment.