]> granicus.if.org Git - postgresql/commitdiff
cc1: warnings being treated as errors
authorVadim B. Mikheev <vadim4o@yahoo.com>
Tue, 3 Jun 1997 06:32:56 +0000 (06:32 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Tue, 3 Jun 1997 06:32:56 +0000 (06:32 +0000)
dt.c: In function `timespan2tm':
dt.c:1722: warning: unused variable `funit'
dt.c:1722: warning: unused variable `iunit'

-> got rid of them.

src/backend/utils/adt/dt.c

index fef54a9da26123d3fc4214dc7ac8c5efe479e1fa..542246a52b9d9ac88d9a9c03326b93e289a7a741 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.23 1997/05/30 15:02:51 thomas Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.24 1997/06/03 06:32:56 vadim Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1719,7 +1719,7 @@ printf( "tm2datetime- time is %f %02d:%02d:%02d %f\n", time, tm->tm_hour, tm->tm
 int
 timespan2tm(TimeSpan span, struct tm *tm, float8 *fsec)
 {
-    double time, iunit, funit;
+    double time;
 
     if (span.month != 0) {
        tm->tm_year = span.month / 12;