From 5da19f4240574ade0094d062f5e3088bd3c72606 Mon Sep 17 00:00:00 2001 From: jeon Date: Fri, 7 Feb 2020 20:08:23 +0900 Subject: [PATCH] e_input_evdev: fix a svace issue Change-Id: I1125aa201e1230adcb253a9a7c0af024cc932e17 --- src/bin/e_input_evdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_input_evdev.c b/src/bin/e_input_evdev.c index b2d7b2178f..ea5d5476f8 100644 --- a/src/bin/e_input_evdev.c +++ b/src/bin/e_input_evdev.c @@ -1339,7 +1339,7 @@ _device_handle_touch_aux_data(struct libinput_device *device, struct libinput_ev comp_conf = e_comp_config_get(); if (comp_conf && comp_conf->input_log_enable) - ELOGF("Touch", "Axis (label: %d, value: %lf)", NULL, axis->label, axis->value); + ELOGF("Touch", "Axis (label: %d, value: %lf)", NULL, axis?axis->label:-1, axis?axis->value:0.0); ecore_event_add(ECORE_EVENT_AXIS_UPDATE, ev, _e_input_aux_data_event_free, NULL); -- 2.34.1