From 3a175a8beceed87a6f84bce43e93268c25132377 Mon Sep 17 00:00:00 2001 From: "tague%netscape.com" Date: Tue, 29 Jun 1999 07:57:30 +0000 Subject: [PATCH] Eliminate unix builld warnings from libi18n.h git-svn-id: svn://10.0.0.236/trunk@37383 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/include/libi18n.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/include/libi18n.h b/mozilla/include/libi18n.h index 3bcc2844c96..31cdba7d51f 100644 --- a/mozilla/include/libi18n.h +++ b/mozilla/include/libi18n.h @@ -2746,7 +2746,7 @@ typedef enum INTL_TimeFormatSelector { * * @param localeID Specification for the Locale conventions to use. * @param formatSelector Specification for the type of format to select - * @param time time + * @param timeToFormat time * @param utf8Buffer result buffer (in utf8) * @param bufferLength length of result buffer * @return PRSuccess when succesful, PRFailure otherwise @@ -2754,7 +2754,7 @@ typedef enum INTL_TimeFormatSelector { PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID, INTL_DateFormatSelector dateFormatSelector, INTL_TimeFormatSelector timeFormatSelector, - time_t time, + time_t timeToFormat, unsigned char* utf8Buffer, PRUint32 bufferLength); /** @@ -2765,7 +2765,7 @@ PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID, * * @param localeID Specification for the Locale conventions to use. * @param formatSelector Specification for the type of format to select - * @param time time + * @param timeToFormat time * @param utf8Buffer result buffer (in utf8) * @param bufferLength length of result buffer * @return PRSuccess when succesful, PRFailure otherwise @@ -2773,7 +2773,7 @@ PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID, PUBLIC PRStatus INTL_FormatTMTime(INTLLocaleID localeID, INTL_DateFormatSelector dateFormatSelector, INTL_TimeFormatSelector timeFormatSelector, - const struct tm* time, + const struct tm* timeToFormat, unsigned char* utf8Buffer, PRUint32 bufferLength);