Skip to content
Snippets Groups Projects
Commit 70ef49f8 authored by Dominik Loidolt's avatar Dominik Loidolt
Browse files

add cast to prevent warning

parent 7ccb9f0c
No related branches found
No related tags found
1 merge request!23Small bug fixes
...@@ -54,7 +54,7 @@ void setUp(void) ...@@ -54,7 +54,7 @@ void setUp(void)
static int n; static int n;
#if HAS_TIME_H #if HAS_TIME_H
seed = time(NULL) * getpid(); seed = (unsigned int)(time(NULL) * getpid());
#else #else
seed = 1; seed = 1;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment