summaryrefslogtreecommitdiff
path: root/src/qxl_cursor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/qxl_cursor.c')
-rw-r--r--src/qxl_cursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qxl_cursor.c b/src/qxl_cursor.c
index 72c6c9f..459cbd7 100644
--- a/src/qxl_cursor.c
+++ b/src/qxl_cursor.c
@@ -50,7 +50,7 @@ static struct QXLCursorCmd *
qxl_alloc_cursor_cmd(qxl_screen_t *qxl)
{
struct QXLCursorCmd *cmd =
- qxl_allocnf (qxl, sizeof(struct QXLCursorCmd));
+ qxl_allocnf (qxl, sizeof(struct QXLCursorCmd), "cursor command");
cmd->release_info.id = pointer_to_u64 (cmd) | 1;
@@ -94,7 +94,7 @@ qxl_load_cursor_argb (ScrnInfoPtr pScrn, CursorPtr pCurs)
struct QXLCursorCmd *cmd = qxl_alloc_cursor_cmd (qxl);
struct QXLCursor *cursor =
- qxl_allocnf(qxl, sizeof(struct QXLCursor) + size);
+ qxl_allocnf(qxl, sizeof(struct QXLCursor) + size, "cursor data");
cursor->header.unique = 0;
cursor->header.type = SPICE_CURSOR_TYPE_ALPHA;