Fix the initial value of call-id 26/262526/1 accepted/tizen_6.5_unified tizen_6.5 accepted/tizen/6.5/unified/20211028.120555 accepted/tizen/unified/20210825.065555 submit/tizen/20210813.013653 submit/tizen/20210824.064232 submit/tizen_6.5/20211028.162501 tizen_6.5.m2_release
authorWootak Jung <wootak.jung@samsung.com>
Fri, 13 Aug 2021 00:13:09 +0000 (09:13 +0900)
committerWootak Jung <wootak.jung@samsung.com>
Fri, 13 Aug 2021 00:14:45 +0000 (09:14 +0900)
Change-Id: I958c61fe01a35176372da6ad81b20df1bf92b11f
Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
src/core_object/co_call.c

index 20702d0..0007d1b 100644 (file)
@@ -523,7 +523,7 @@ CallObject *tcore_call_object_new(CoreObject *o)
                g_free(co);
                return NULL;
        }
-       co->id = -1;
+       co->id = 0;
 
        po->cobjs = g_slist_append(po->cobjs, co);