From 2ebfd7188f07e8c0c4e88d17e094d6fdd59f4769 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Tue, 9 Aug 2022 19:55:47 +0800 Subject: [PATCH] ; * src/xterm.c (xi_populate_device_from_info): Minor ifdef cleanup. --- src/xterm.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index 806933fd07e..ab43a8ec517 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5282,16 +5282,15 @@ xi_populate_device_from_info (struct xi_device_t *xi_device, * device->num_classes); values = NULL; #endif -#ifdef HAVE_XINPUT2_2 - xi_device->touchpoints = NULL; -#endif xi_device->use = device->use; + xi_device->name = build_string (device->name); + xi_device->attachment = device->attachment; + #ifdef HAVE_XINPUT2_2 + xi_device->touchpoints = NULL; xi_device->direct_p = false; #endif - xi_device->name = build_string (device->name); - xi_device->attachment = device->attachment; for (c = 0; c < device->num_classes; ++c) { -- 2.39.5