From cb2ab3842182bc6bb7edf63fbeeebf26421f6275 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 8 Jul 2016 08:54:45 -0400 Subject: [PATCH] elput: Fix horrid typo Not sure how this happened, but use a ; not a : ;) Signed-off-by: Chris Michael --- src/lib/elput/elput_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elput/elput_input.c b/src/lib/elput/elput_input.c index e5182a9..5b2b1c5 100644 --- a/src/lib/elput/elput_input.c +++ b/src/lib/elput/elput_input.c @@ -634,7 +634,7 @@ EAPI Eina_Stringshare * elput_input_device_output_name_get(Elput_Device *device) { EINA_SAFETY_ON_NULL_RETURN_VAL(device, NULL); - EINA_SAFETY_ON_NULL_RETURN_VAL(device->output_name, NULL): + EINA_SAFETY_ON_NULL_RETURN_VAL(device->output_name, NULL); return eina_stringshare_ref(device->output_name); } -- 2.7.4