Skip to content

Commit

Permalink
[client] x11: Fix clipboard selection notify
Browse files Browse the repository at this point in the history
Was expecting a pointer but getting a pointer-to-pointer
  • Loading branch information
JJRcop committed Nov 30, 2023
1 parent 22d949c commit 48a3202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/displayservers/X11/clipboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ bool x11CBEventThread(const XEvent * xe)
default:
if (xe->type == x11.eventBase + XFixesSelectionNotify)
{
XFixesSelectionNotifyEvent * sne = (XFixesSelectionNotifyEvent *)&xe;
XFixesSelectionNotifyEvent * sne = (XFixesSelectionNotifyEvent *)xe;
x11CBXFixesSelectionNotify(*sne);
return true;
}
Expand Down

0 comments on commit 48a3202

Please sign in to comment.