diff options
Diffstat (limited to 'xorg-server/xfixes/select.c')
-rw-r--r-- | xorg-server/xfixes/select.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xorg-server/xfixes/select.c b/xorg-server/xfixes/select.c index a5811bdc0..5ba7896cb 100644 --- a/xorg-server/xfixes/select.c +++ b/xorg-server/xfixes/select.c @@ -284,7 +284,9 @@ SelectionFreeWindow (pointer data, XID id) Bool XFixesSelectionInit (void) { - SelectionClientType = CreateNewResourceType(SelectionFreeClient); - SelectionWindowType = CreateNewResourceType(SelectionFreeWindow); + SelectionClientType = CreateNewResourceType(SelectionFreeClient, + "XFixesSelectionClient"); + SelectionWindowType = CreateNewResourceType(SelectionFreeWindow, + "XFixesSelectionWindow"); return SelectionClientType && SelectionWindowType; } |