projects
/
platform
/
core
/
uifw
/
libtdm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
560cea6
)
layer: correct return type
01/171001/2
author
Boram Park
<boram1288.park@samsung.com>
Sun, 25 Feb 2018 22:53:13 +0000
(07:53 +0900)
committer
Boram Park
<boram1288.park@samsung.com>
Sun, 25 Feb 2018 23:27:57 +0000
(08:27 +0900)
TDM_ERROR_NONE seems right because flags is set to 0 as default
Change-Id: I351454370b6e001ec1ba3ee1cccd514e1d6df908
src/tdm_layer.c
patch
|
blob
|
history
diff --git
a/src/tdm_layer.c
b/src/tdm_layer.c
index d22a1de502a822e650e332bb6f49bb7fd0669197..97e2a09aef0d3b55260f97c101a8256b48a3fceb 100644
(file)
--- a/
src/tdm_layer.c
+++ b/
src/tdm_layer.c
@@
-1343,8
+1343,8
@@
tdm_layer_get_buffer_flags(tdm_layer *layer, unsigned int *flags)
/* LCOV_EXCL_START */
*flags = 0;
_pthread_mutex_unlock(&private_display->lock);
- TDM_
ERR
("not implemented!!");
- return TDM_ERROR_NO
T_IMPLEMENTED
;
+ TDM_
INFO
("not implemented!!");
+ return TDM_ERROR_NO
NE
;
/* LCOV_EXCL_STOP */
}