correct mismatch of return type for tbm_bo_export(). 28/56428/1 accepted/tizen/mobile/20160110.234541 accepted/tizen/tv/20160110.234606 accepted/tizen/wearable/20160110.234622 submit/tizen/20160110.221140
authorSeunghun Lee <shiin.lee@samsung.com>
Fri, 8 Jan 2016 00:25:03 +0000 (09:25 +0900)
committerSeunghun Lee <shiin.lee@samsung.com>
Fri, 8 Jan 2016 00:31:05 +0000 (09:31 +0900)
Change-Id: Ie207562459d75074fc80f77be5548505b207145c

src/tbm_bufmgr.c

index 11bbcf4..1f4cfb3 100755 (executable)
@@ -1281,12 +1281,12 @@ tbm_bo tbm_bo_import_fd(tbm_bufmgr bufmgr, tbm_fd fd)
        return bo;
 }
 
-unsigned int tbm_bo_export(tbm_bo bo)
+tbm_key tbm_bo_export(tbm_bo bo)
 {
        TBM_RETURN_VAL_IF_FAIL(_tbm_bo_is_valid(bo), 0);
 
        tbm_bufmgr bufmgr;
-       int ret;
+       tbm_key ret;
 
        bufmgr = bo->bufmgr;