ecore_file_download: added missing variable declaration
authorBowon Ryu <bowon.ryu@samsung.com>
Fri, 11 May 2018 05:39:06 +0000 (14:39 +0900)
committerYeongjong Lee <yj34.lee@samsung.com>
Fri, 13 Jul 2018 10:51:56 +0000 (19:51 +0900)
Change-Id: Ib4231207641cd6921f5fd91079e255c89fb0e7fa
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
TC/ecore/ecore_file_download/utc_ecore_file_download.c

index f32b2d5160532a8df74665f63667f01696052af7..aa91862ea67d7452de57de2b4514ccd616ce9a9e 100644 (file)
@@ -170,7 +170,7 @@ START_TEST(utc_ecore_file_download_n2)
       the protocol is correct or not. This test case checks callback results only.
       It should be recovered after Upstream adds handling of protocols. */
    //Eina_Bool ret = ecore_file_download(URL_BAD, DST, completion_cb, progress_cb, NULL, NULL);
-   ecore_file_download(URL_BAD, DST, completion_cb, progress_cb, NULL, NULL);
+   Eina_Bool ret = ecore_file_download(URL_BAD, DST, completion_cb, progress_cb, NULL, NULL);
    if (call_check == 200)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..(%d), (%d)", __FILE__, __LINE__, ret, call_check);