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