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

Define clock as time_t rather than SLONG

This commit is contained in:
stryqx 2003-10-07 23:03:29 +00:00
parent 1ba038ec0e
commit fd55e9f7c3

View File

@ -2793,7 +2793,7 @@ static void put_message(SSHORT msg_num,
* Write out informational message to the log.
*
**************************************/
SLONG clock;
time_t clock;
tm times;
UCHAR message[MSG_LENGTH];
@ -3581,7 +3581,7 @@ static void time_stamp(GDS__QUAD * date)
* Get the current time in gds format.
*
**************************************/
SLONG clock;
time_t clock;
tm times;
clock = time(NULL);