mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 18:00:28 +00:00
Cast getpid() and time() results for srand() input
This fixes: src/ngircd/ngircd.c:596: warning: implicit conversion shortens 64-bit value into a 32-bit value (i686-apple-darwin11-llvm-gcc-4.2)
This commit is contained in:
parent
0b8acf1205
commit
160c52400f
@ -593,7 +593,7 @@ Random_Init(void)
|
||||
return;
|
||||
if (Random_Init_Kern("/dev/arandom"))
|
||||
return;
|
||||
srand(rand() ^ getpid() ^ time(NULL));
|
||||
srand(rand() ^ (unsigned)getpid() ^ (unsigned)time(NULL));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user