8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Fix posix build after my timestamp change

This commit is contained in:
skidder 2004-11-04 19:38:24 +00:00
parent 6b133bd51c
commit d55bbe7c29

View File

@ -209,7 +209,7 @@ void TimeStamp::generate()
struct timeval tp;
GETTIMEOFDAY(&tp);
seconds = tp.tv_sec;
millis = tp.tv_usec / 1000;
fractions = tp.tv_usec / 1000;
#else
struct timeb time_buffer;
ftime(&time_buffer);