diff options
author | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2018-04-24 17:19:47 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2018-04-24 17:19:47 +0900 |
commit | 454cc488419e969e481ee4fff20869b13c1c9f4d (patch) | |
tree | 4a7ef013a54c2776310ede6eb4ec652be307b6f7 /src/lib/elementary/efl_page_transition_scroll.c | |
parent | 83f326009e3b87c9532edf5c8f0aa9fe03a6c9e9 (diff) |
efl_page_transition_scroll: Fix warning of uninitialized variable
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/efl_page_transition_scroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_page_transition_scroll.c b/src/lib/elementary/efl_page_transition_scroll.c index ef8f850bb7..552f2b9671 100644 --- a/src/lib/elementary/efl_page_transition_scroll.c +++ b/src/lib/elementary/efl_page_transition_scroll.c | |||
@@ -387,7 +387,7 @@ _efl_page_transition_scroll_curr_page_change(Eo *obj EINA_UNUSED, | |||
387 | double pos) | 387 | double pos) |
388 | { | 388 | { |
389 | Eina_List *list; | 389 | Eina_List *list; |
390 | Page_Info *pi, *target; | 390 | Page_Info *pi, *target = NULL; |
391 | 391 | ||
392 | // after the current page is changed, page infos need to be updated | 392 | // after the current page is changed, page infos need to be updated |
393 | // with a new id based on the new geometry of the boxes. | 393 | // with a new id based on the new geometry of the boxes. |