Skip to content

Commit c00c288

Browse files
committed
more format :/
1 parent 6629159 commit c00c288

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

offload/plugins-nextgen/level_zero/src/L0Memory.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,7 @@ void *MemAllocatorTy::MemPoolTy::alloc(size_t Size, size_t &AllocSize) {
264264
void *Base = Allocator->allocL0(BlockSize, 0, AllocKind);
265265

266266
if (ZeroInit) {
267-
auto RC =
268-
Allocator->enqueueMemSet(Base, 0, BlockSize);
267+
auto RC = Allocator->enqueueMemSet(Base, 0, BlockSize);
269268
if (RC != OFFLOAD_SUCCESS) {
270269
DP("Failed to zero-initialize pool memory\n");
271270
return nullptr;

0 commit comments

Comments
 (0)