Bug 456489 - WinCE Compiler keyword interface used in mozStorageRow.cpp. patch by wolfe, r=sdwilsh

This commit is contained in:
Doug Turner 2008-09-23 11:03:48 -07:00
Родитель 7216b611ec
Коммит 1234432adf
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -225,8 +225,8 @@ mozStorageRow::GetBlob(PRUint32 aIndex, PRUint32 *_size, PRUint8 **_blob)
return NS_ERROR_ILLEGAL_VALUE;
PRUint16 type;
nsIID interface;
return mData.ObjectAt(aIndex)->GetAsArray(&type, &interface, _size,
nsIID interfaceIID;
return mData.ObjectAt(aIndex)->GetAsArray(&type, &interfaceIID, _size,
reinterpret_cast<void **>(_blob));
}