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
1 changed files with 2 additions and 2 deletions

View 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;