From: Yunhee Seo Date: Mon, 9 Dec 2024 06:10:28 +0000 (+0900) Subject: power: Add comma to warning log X-Git-Tag: accepted/tizen/unified/20241210.105059^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=647e8cadc4709738e77d385cc78e245f31db168c;p=platform%2Fcore%2Fsystem%2Fdeviced.git power: Add comma to warning log The log message was modified and a comma was omitted, causing a build error. It must be fixed. Change-Id: I247a789ed20502759909f33d9592e88610185a10 Signed-off-by: Yunhee Seo --- diff --git a/src/power/power.c b/src/power/power.c index 396a9bc6..8869ddfb 100644 --- a/src/power/power.c +++ b/src/power/power.c @@ -138,7 +138,7 @@ static void cleanup_waiting_list(gpointer data) { struct change_state_wait *csw = (struct change_state_wait *) data; - _W("%s(pid=%d) hasn't confirmed wait_callback_id=%"PRIu64"(%s) within %ds. Transition to the next state anyway." + _W("%s(pid=%d) hasn't confirmed wait_callback_id=%"PRIu64"(%s) within %ds. Transition to the next state anyway.", csw->pi->comm, csw->pi->pid, csw->wait_callback_id, state_name(csw->state), max_wait_timeout); if (kill(csw->pi->pid, 0) != 0) {