From 4cba150eee0f7c541fa7a3c5621c50efbec0ee1d Mon Sep 17 00:00:00 2001 From: Sameeh Jubran Date: Sun, 30 Oct 2016 10:39:32 +0200 Subject: [PATCH] Fixing indentation Signed-off-by: Sameeh Jubran Acked-by: Pavel Grunt --- qxldod/QxlDod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qxldod/QxlDod.cpp b/qxldod/QxlDod.cpp index 6e70211..c788ef9 100755 --- a/qxldod/QxlDod.cpp +++ b/qxldod/QxlDod.cpp @@ -4502,7 +4502,7 @@ NTSTATUS QxlDevice::SetPointerPosition(_In_ CONST DXGKARG_SETPOINTERPOSITION* pS QXLCursorCmd *cursor_cmd = CursorCmd(); if (pSetPointerPosition->X < 0) { cursor_cmd->type = QXL_CURSOR_HIDE; - } else { + } else { cursor_cmd->type = QXL_CURSOR_MOVE; cursor_cmd->u.position.x = (INT16)pSetPointerPosition->X; cursor_cmd->u.position.y = (INT16)pSetPointerPosition->Y;