Fix a wrong implementation 46/211446/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 5 Aug 2019 06:06:08 +0000 (15:06 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 5 Aug 2019 06:07:11 +0000 (15:07 +0900)
Change-Id: Ifb3ea4f60aaf0d9285f27797f18fb305cec50ee3
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/aul_comp_context.c

index 3a3de37..001519c 100644 (file)
@@ -89,7 +89,7 @@ static struct aul_comp_context_s *__create_comp_context(bundle *b)
                _E("Failed to get the flag for checking sub comp");
                goto err;
        }
-       context->status = atoi(val);
+       context->is_sub_comp = atoi(val);
 
        val = bundle_get_val(b, AUL_K_COMPONENT_ID);
        if (!val) {