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

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

@ -365,7 +365,7 @@ nsRegistryDataSource::GetTarget(nsIRDFResource *aSource, nsIRDFResource *aProper
if (PL_strncmp(uri, kValuePrefix, sizeof(kValuePrefix) -1) == 0) {
const char* path = uri + sizeof(kValuePrefix) - 1;
uint32 type;
PRUint32 type;
rv = mRegistry->GetValueType(key, path, &type);
if (NS_FAILED(rv)) return rv;
@ -383,7 +383,7 @@ nsRegistryDataSource::GetTarget(nsIRDFResource *aSource, nsIRDFResource *aProper
}
case nsIRegistry::Int32: {
int32 value;
PRInt32 value;
rv = mRegistry->GetInt(key, path, &value);
if (NS_FAILED(rv)) return rv;