projects
/
platform
/
core
/
uifw
/
libtbm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47099a8
)
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
author
Seunghun Lee
<shiin.lee@samsung.com>
Fri, 8 Jan 2016 00:25:03 +0000
(09:25 +0900)
committer
Seunghun Lee
<shiin.lee@samsung.com>
Fri, 8 Jan 2016 00:31:05 +0000
(09:31 +0900)
Change-Id: Ie207562459d75074fc80f77be5548505b207145c
src/tbm_bufmgr.c
patch
|
blob
|
history
diff --git
a/src/tbm_bufmgr.c
b/src/tbm_bufmgr.c
index 11bbcf4e0560370e5d7642b84b0c5e445dc3a84d..1f4cfb3eaa0ff25918aa9bb4ea2cf44dde3d6307 100755
(executable)
--- a/
src/tbm_bufmgr.c
+++ b/
src/tbm_bufmgr.c
@@
-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;