summaryrefslogtreecommitdiff
path: root/ipc/gatekeeper_ipc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/gatekeeper_ipc.cpp')
-rw-r--r--ipc/gatekeeper_ipc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/gatekeeper_ipc.cpp b/ipc/gatekeeper_ipc.cpp
index 7fc5051..889ed4f 100644
--- a/ipc/gatekeeper_ipc.cpp
+++ b/ipc/gatekeeper_ipc.cpp
@@ -219,14 +219,14 @@ static gatekeeper_error_t handle_msg(handle_t chan) {
msg_inf.len - sizeof(gatekeeper_message), &out_buf, &out_buf_size);
if (err != ERROR_NONE) {
- TLOGE("unable (%ld) to handle request", rc);
+ TLOGE("unable (%ld) to handle request\n", rc);
return send_error_response(chan, gk_msg->cmd, err);
}
err = send_response(chan, gk_msg->cmd, out_buf.get(), out_buf_size);
if (err != ERROR_NONE) {
- TLOGE("unable (%ld) to send response", rc);
+ TLOGE("unable (%ld) to send response\n", rc);
}
return err;