Skip to content

Commit 778f92a

Browse files
committed
fix format
1 parent e87f68d commit 778f92a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

source/loader/layers/sanitizer/asan_interceptor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ ur_result_t enqueueMemSetShadow(ur_context_handle_t Context,
136136
UR_VIRTUAL_MEM_ACCESS_FLAG_READ_WRITE);
137137
if (URes != UR_RESULT_SUCCESS) {
138138
getContext()->logger.debug("urVirtualMemMap({}, {}): {}",
139-
(void *)MappedPtr, PageSize, URes);
139+
(void *)MappedPtr, PageSize,
140+
URes);
140141
}
141142

142143
// Initialize to zero

source/loader/layers/sanitizer/ur_sanddi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ur_result_t setupContext(ur_context_handle_t Context, uint32_t numDevices,
3232
return UR_RESULT_ERROR_INVALID_DEVICE;
3333
}
3434
getContext()->logger.info("Add {} into context {}", ToString(DI->Type),
35-
(void *)Context);
35+
(void *)Context);
3636
if (!DI->ShadowOffset) {
3737
UR_CALL(DI->allocShadowMemory(Context));
3838
}

0 commit comments

Comments
 (0)