Fix build bustage on windows. r=sdagley

This commit is contained in:
scc%netscape.com 2000-02-15 05:08:48 +00:00
Родитель 59afb30e1b
Коммит 01d4dc8a89
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -153,9 +153,10 @@ get_current_time()
PRInt64 now_seconds;
LL_DIV(now_seconds, now_useconds, usecPerSec);
// assert(!now_seconds.hi);
time_t current_time_in_seconds;
LL_L2I(current_time_in_seconds, now_seconds);
return now_seconds.lo;
return current_time_in_seconds;
}
/* StrAllocCopy and StrAllocCat should really be defined elsewhere */