Skip to content

Commit 0de2831

Browse files
committed
Format
1 parent d07903e commit 0de2831

File tree

1 file changed

+1
-1
lines changed
  • sycl/plugins/unified_runtime/ur/adapters/hip

1 file changed

+1
-1
lines changed

sycl/plugins/unified_runtime/ur/adapters/hip/usm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ UR_APIEXPORT ur_result_t UR_APICALL USMFreeImpl(ur_context_handle_t hContext,
7676
UR_ASSERT(Type == hipMemoryTypeDevice || Type == hipMemoryTypeHost,
7777
UR_RESULT_ERROR_INVALID_MEM_OBJECT);
7878
if (Type == hipMemoryTypeDevice) {
79-
Result = UR_CHECK_ERROR(hipFree(pMem));
79+
Result = UR_CHECK_ERROR(hipFree(pMem));
8080
}
8181
if (Type == hipMemoryTypeHost) {
8282
Result = UR_CHECK_ERROR(hipHostFree(pMem));

0 commit comments

Comments
 (0)