aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-10-01 02:31:33 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-10-01 02:31:33 +0000
commita8443da57a0843b93eb2f92cbc799d33534ff630 (patch)
treec4bffa904a20af561317458596da534382cd9220
parent464f20cf7bef622fcdc77fa636388e9a3e207aca (diff)
downloadpostgresql-a8443da57a0843b93eb2f92cbc799d33534ff630.tar.gz
postgresql-a8443da57a0843b93eb2f92cbc799d33534ff630.zip
Remove C++ style comment. Some compilers won't accept it.
-rw-r--r--src/backend/utils/adt/nabstime.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/utils/adt/nabstime.c b/src/backend/utils/adt/nabstime.c
index ca8d728454b..b7ac0784d5e 100644
--- a/src/backend/utils/adt/nabstime.c
+++ b/src/backend/utils/adt/nabstime.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.86 2001/09/28 08:09:11 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.87 2001/10/01 02:31:33 ishii Exp $
*
* NOTES
*
@@ -190,7 +190,9 @@ GetCurrentAbsoluteTimeUsec(int *usec)
{
time_t now;
struct timeval tp;
-// struct timezone tpz;
+#ifdef NOT_USED
+ struct timezone tpz;
+#endif
#if defined(HAVE_TM_ZONE) || defined(HAVE_INT_TIMEZONE)
struct tm *tm;
#else