Skip to content

Commit 067fea9

Browse files
Fix typo
Change-Id: I83f38c41f822f62688b618b84eb8221a160d3528 Signed-off-by: Lukasz Jobczyk <[email protected]>
1 parent 5ca820c commit 067fea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/source/os_interface/linux/drm_buffer_object.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void BufferObject::unbind(OsContext *osContext, uint32_t vmHandleId) {
161161
if (this->bindInfo[contextId][vmHandleId]) {
162162
auto ret = this->drm->unbindBufferObject(osContext, vmHandleId, this);
163163
auto err = this->drm->getErrno();
164-
printDebugString(DebugManager.flags.PrintBOBindingResult.get(), stderr, "unbind BO-%d, rande: %llx - %llx, size: %lld, result: %d, errno: %d(%s)\n", this->handle, this->gpuAddress, ptrOffset(this->gpuAddress, this->size), this->size, ret, err, strerror(err));
164+
printDebugString(DebugManager.flags.PrintBOBindingResult.get(), stderr, "unbind BO-%d, range: %llx - %llx, size: %lld, result: %d, errno: %d(%s)\n", this->handle, this->gpuAddress, ptrOffset(this->gpuAddress, this->size), this->size, ret, err, strerror(err));
165165
UNRECOVERABLE_IF(ret != 0);
166166
this->bindInfo[contextId][vmHandleId] = false;
167167
}

0 commit comments

Comments
 (0)