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:
Alexander Barton 2011-08-02 13:21:54 +02:00
parent 0b8acf1205
commit 160c52400f
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}