[client] x11: pass large struct by reference

This commit is contained in:
Geoffrey McRae
2023-11-11 11:36:24 +11:00
parent 3c1405719c
commit b70811dcb9
3 changed files with 11 additions and 11 deletions

View File

@@ -897,7 +897,7 @@ static int x11EventThread(void * unused)
XNextEvent(x11.display, &xe);
// call the clipboard handling code
if (x11CBEventThread(xe))
if (x11CBEventThread(&xe))
continue;
switch(xe.type)