fix: add missing new line character in print log

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2024-05-23 15:49:28 +00:00
committed by Compute-Runtime-Automation
parent cf8b5480a0
commit 3e1d276233

View File

@@ -683,7 +683,7 @@ ze_result_t KernelImp::setArgBuffer(uint32_t argIndex, size_t argSize, const voi
NEO::SvmAllocationData *allocData = nullptr;
if (argVal != nullptr) {
const auto requestedAddress = *reinterpret_cast<void *const *>(argVal);
PRINT_DEBUG_STRING(NEO::debugManager.flags.PrintL0SetKernelArg.get(), stderr, "set arg buffer index : %u requested address : %p", argIndex, requestedAddress);
PRINT_DEBUG_STRING(NEO::debugManager.flags.PrintL0SetKernelArg.get(), stderr, "set arg buffer index : %u requested address : %p\n", argIndex, requestedAddress);
if (argInfo.allocId > 0 &&
argInfo.allocId < NEO::SvmAllocationData::uninitializedAllocId &&
requestedAddress == argInfo.value) {