diff --git a/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h b/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h index a5e1392e43..ae241a245c 100644 --- a/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h +++ b/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h @@ -146,7 +146,7 @@ AllocationDescriptorList::FindExtent(off_t start, template -AllocationDescriptorList::Descriptor* +typename AllocationDescriptorList::Descriptor* AllocationDescriptorList::_CurrentDescriptor() const { TRACE(("AllocationDescriptorList<>::_CurrentDescriptor:\n" @@ -227,11 +227,11 @@ AllocationDescriptorList::_Rewind() template -AllocationDescriptorList::Descriptor* +typename AllocationDescriptorList::Descriptor* AllocationDescriptorList::_DescriptorArray() const { return fReadFromIcb ? fIcbDescriptors - : (AllocationDescriptorList::Descriptor *) + : (typename AllocationDescriptorList::Descriptor *) fAdditionalDescriptors.Block(); }