rename variable to avoid warnings on linux.

time is globally defined.
This commit is contained in:
sspitzer%netscape.com 1999-07-01 03:59:55 +00:00
Родитель f4f48dc43c
Коммит e97690072d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -48,10 +48,10 @@ public:
* Construct the time from a string.
*/
nsTime(const char* dateStr, PRBool defaultToGMT) {
PRInt64 time;
PRStatus status = PR_ParseTimeString(dateStr, defaultToGMT, &time);
PRInt64 theTime;
PRStatus status = PR_ParseTimeString(dateStr, defaultToGMT, &theTime);
if (status == PR_SUCCESS)
mValue = time;
mValue = theTime;
else
mValue = LL_ZERO;
}