power: Add comma to warning log 02/316002/2 accepted/tizen/unified/20241210.105059 accepted/tizen/unified/x/20241218.032836 accepted/tizen/unified/x/asan/20241224.004606
authorYunhee Seo <yuni.seo@samsung.com>
Mon, 9 Dec 2024 06:10:28 +0000 (15:10 +0900)
committerYunhee Seo <yuni.seo@samsung.com>
Mon, 9 Dec 2024 06:17:06 +0000 (15:17 +0900)
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 <yuni.seo@samsung.com>
src/power/power.c

index 396a9bc61570beec1035fae5012b7d33f8bdc203..8869ddfb6641cc373cab36c78a04729f455480d8 100644 (file)
@@ -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) {