aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-02-16 12:20:39 +0100
committerPaul Kocialkowski <contact@paulk.fr>2014-02-16 12:20:39 +0100
commitebe96b1e1ad17628b47c6f807f2d0b6f39d4e541 (patch)
tree8fe8fce861702ebfd8355c0e1dbae2cca3fdca7a
parent583f87780b8b747f48525810ef9a467ec1902fad (diff)
downloadexternal_libsamsung-ipc-ebe96b1e1ad17628b47c6f807f2d0b6f39d4e541.zip
external_libsamsung-ipc-ebe96b1e1ad17628b47c6f807f2d0b6f39d4e541.tar.gz
external_libsamsung-ipc-ebe96b1e1ad17628b47c6f807f2d0b6f39d4e541.tar.bz2
ipc_utils: Request type string when sending
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rw-r--r--samsung-ipc/ipc_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samsung-ipc/ipc_utils.c b/samsung-ipc/ipc_utils.c
index 54a4fd7..6e8d190 100644
--- a/samsung-ipc/ipc_utils.c
+++ b/samsung-ipc/ipc_utils.c
@@ -442,7 +442,7 @@ void ipc_client_log_send(struct ipc_client *client, struct ipc_message *message,
switch (client->type) {
case IPC_CLIENT_TYPE_FMT:
ipc_client_log(client, "%s: Sent FMT message", prefix);
- ipc_client_log(client, "%s: Message: mseq=0x%02x, command=%s, type=%s, size=%d", prefix, message->mseq, ipc_command_string(message->command), ipc_response_type_string(message->type), message->size);
+ ipc_client_log(client, "%s: Message: mseq=0x%02x, command=%s, type=%s, size=%d", prefix, message->mseq, ipc_command_string(message->command), ipc_request_type_string(message->type), message->size);
#ifdef DEBUG
if (message->size > 0) {
ipc_client_log(client, "=============================== FMT data dump ================================");