diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-06-12 08:15:29 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-06-12 08:15:29 +0000 |
commit | b14295cfe4f2a738a0b023d10bc508da2c458bdb (patch) | |
tree | 372f60ae84e507d582a83600a700304b462f94da /src/bin/psql/common.c | |
parent | dc4ee8a833c09e883f1966d1698792b627649740 (diff) | |
download | postgresql-b14295cfe4f2a738a0b023d10bc508da2c458bdb.tar.gz postgresql-b14295cfe4f2a738a0b023d10bc508da2c458bdb.zip |
Attached is the complete diff against current CVS.
Compiles on BCC 5.5 and VC++ 6.0 (with warnings).
Karl Waclawek
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 3769f671d16..84dc32bd5ca 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.63 2003/06/12 07:52:51 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.64 2003/06/12 08:15:28 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -48,7 +48,7 @@ typedef struct timeval TimevalStruct; #else typedef struct _timeb TimevalStruct; -#define GETTIMEOFDAY(T) _ftime(&T) +#define GETTIMEOFDAY(T) _ftime(T) #define DIFF_MSEC(T, U) ((((T)->time - (U)->time) * 1000.0 + (T)->millitm - (U)->millitm)) #endif |