dt.c: In function `timespan2tm':
dt.c:1722: warning: unused variable `funit'
dt.c:1722: warning: unused variable `iunit'
-> got rid of them.
*
*
* 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 $
*
*-------------------------------------------------------------------------
*/
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;