projects
/
platform
/
core
/
api
/
device.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4b1a20
)
Common: fix a bug in log
58/155958/1
accepted/tizen_3.0_common
accepted/tizen_3.0_mobile
accepted/tizen_3.0_tv
accepted/tizen_3.0_wearable
tizen_3.0
accepted/tizen/3.0/common/20171019.135738
accepted/tizen/3.0/mobile/20171019.104233
accepted/tizen/3.0/tv/20171019.104245
accepted/tizen/3.0/wearable/20171019.104257
submit/tizen_3.0/20171017.004944
author
lokilee73
<changjoo.lee@samsung.com>
Mon, 16 Oct 2017 14:25:30 +0000
(23:25 +0900)
committer
lokilee73
<changjoo.lee@samsung.com>
Mon, 16 Oct 2017 14:25:34 +0000
(23:25 +0900)
Change-Id: I95fde1891105b9fecb842ab2bdd672e57240da2b
Signed-off-by: lokilee73 <changjoo.lee@samsung.com>
src/power.c
patch
|
blob
|
history
diff --git
a/src/power.c
b/src/power.c
index 5cd313eae926e2811a564e1839bcf98ef8a0372d..56e9c0d143f3213e6a992e5d84082a18979d30ec 100755
(executable)
--- a/
src/power.c
+++ b/
src/power.c
@@
-505,10
+505,10
@@
static int power_load_config(struct parse_result *result, void *data)
return 0;
if (!strncmp(result->name, "LockTimeout", 12)) {
- _I("Power Lock Auto Release Timeout: %
ld
msec", value);
+ _I("Power Lock Auto Release Timeout: %
u
msec", value);
lock_timeout.release = value;
} else if (!strncmp(result->name, "LockPaddingTimeout", 12)) {
- _I("Power Lock Auto Release Padding Timeout: %
ld
msec", value);
+ _I("Power Lock Auto Release Padding Timeout: %
u
msec", value);
lock_timeout.padding = value;
}