More type mismatch fixing for shavear

This commit is contained in:
sfraser%netscape.com 1999-09-29 03:07:27 +00:00
Родитель caa05d9241
Коммит 65d0896a12
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -388,7 +388,7 @@ mozJSComponentLoader::HasChanged(const char *registryLocation,
return PR_TRUE;
/* check modification date */
int32 regTime;
PRInt32 regTime;
if (NS_FAILED(mRegistry->GetInt(key, lastModValueName, &regTime)))
return PR_TRUE;
PRBool changed;
@ -396,7 +396,7 @@ mozJSComponentLoader::HasChanged(const char *registryLocation,
return PR_TRUE;
/* check file size */
int32 regSize;
PRInt32 regSize;
if (NS_FAILED(mRegistry->GetInt(key, fileSizeValueName, &regSize)))
return PR_TRUE;
PRUint32 size = 0;