Skip to content

Commit e959597

Browse files
Jaime ArteagaCompute-Runtime-Automation
authored andcommitted
Dont return on void function
Signed-off-by: Jaime Arteaga <[email protected]>
1 parent e6e6ae2 commit e959597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/source/os_interface/linux/drm_memory_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ void DrmMemoryManager::removeAllocationFromHostPtrManager(GraphicsAllocation *gf
774774
}
775775

776776
void DrmMemoryManager::freeGraphicsMemoryImpl(GraphicsAllocation *gfxAllocation) {
777-
return freeGraphicsMemoryImpl(gfxAllocation, false);
777+
freeGraphicsMemoryImpl(gfxAllocation, false);
778778
}
779779

780780
void DrmMemoryManager::freeGraphicsMemoryImpl(GraphicsAllocation *gfxAllocation, bool isImported) {

0 commit comments

Comments
 (0)