1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

cc1: warnings being treated as errors

dt.c: In function `timespan2tm':
dt.c:1722: warning: unused variable `funit'
dt.c:1722: warning: unused variable `iunit'

-> got rid of them.
This commit is contained in:
Vadim B. Mikheev
1997-06-03 06:32:56 +00:00
parent b46e5b5281
commit fa940fda67

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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 int
timespan2tm(TimeSpan span, struct tm *tm, float8 *fsec) timespan2tm(TimeSpan span, struct tm *tm, float8 *fsec)
{ {
double time, iunit, funit; double time;
if (span.month != 0) { if (span.month != 0) {
tm->tm_year = span.month / 12; tm->tm_year = span.month / 12;