elput: Fix horrid typo

Not sure how this happened, but use a ; not a : ;)

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-08 08:54:45 -04:00
parent ee72059219
commit cb2ab38421
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}