Common: fix a bug in log 57/155957/1 accepted/tizen/unified/20171017.071033 submit/tizen/20171017.005038
authorlokilee73 <changjoo.lee@samsung.com>
Mon, 16 Oct 2017 14:23:17 +0000 (23:23 +0900)
committerlokilee73 <changjoo.lee@samsung.com>
Mon, 16 Oct 2017 14:23:24 +0000 (23:23 +0900)
Change-Id: I0e70e1afec98e6dd804d82d334b17770e451a03d
Signed-off-by: lokilee73 <changjoo.lee@samsung.com>
src/power.c

index 981f8f4..d58858c 100755 (executable)
@@ -498,10 +498,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;
        }