1
1

Explicit cast to keep some compilers quiet.

This commit was SVN r12003.
Этот коммит содержится в:
George Bosilca 2006-10-05 05:29:08 +00:00
родитель d1e884fbf5
Коммит 6a9f0b6ba9

Просмотреть файл

@ -55,7 +55,7 @@
*/ */
static inline void orte_pre_condition_transports_use_rand(uint64_t* unique_key) { static inline void orte_pre_condition_transports_use_rand(uint64_t* unique_key) {
srand(time(NULL)); srand((unsigned int)time(NULL));
unique_key[1] = rand(); unique_key[1] = rand();
unique_key[2] = rand(); unique_key[2] = rand();
} }