diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2014-04-29 21:17:15 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-04-29 21:17:15 +0900 |
commit | e070ce60aa9a71a8f8677b921594017ba7e33ab3 (patch) | |
tree | d729f6d0914599f57caa9a9d2929569724a941ba | |
parent | 6f8189eb6cfcb381855457f4c42f45b8c3ff3c85 (diff) |
spinner: removed return value in the void return type function.
This is caused while resolving merge conflict in c3413c3387dd71f34e9453f1af39cc557ab594a6.
-rw-r--r-- | src/lib/elm_spinner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_spinner.c b/src/lib/elm_spinner.c index 8d89535c9..162846e74 100644 --- a/src/lib/elm_spinner.c +++ b/src/lib/elm_spinner.c | |||
@@ -516,7 +516,7 @@ _elm_spinner_smart_event(Eo *obj, void *_pd EINA_UNUSED, va_list *list) | |||
516 | else if (type == EVAS_CALLBACK_KEY_UP) | 516 | else if (type == EVAS_CALLBACK_KEY_UP) |
517 | { | 517 | { |
518 | if (sd->spin_timer) _val_dec_stop(obj); | 518 | if (sd->spin_timer) _val_dec_stop(obj); |
519 | else return EINA_FALSE; | 519 | else return; |
520 | 520 | ||
521 | goto success; | 521 | goto success; |
522 | } | 522 | } |