aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2012-08-28 13:58:14 +0200
committerSimon Busch <morphis@gravedo.de>2012-08-28 13:58:14 +0200
commitd619e86de0f524d2b56bf871b28273533abd9366 (patch)
treea3b34fe9742abbbd44a05869fcac006dfb203900 /samsung-ipc
parent222f78a5f065cc1c1cbefe77ef96807ea996d0fb (diff)
downloadexternal_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.zip
external_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.tar.gz
external_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.tar.bz2
Use correct helper method to print request type
Diffstat (limited to 'samsung-ipc')
-rw-r--r--samsung-ipc/ipc_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samsung-ipc/ipc_util.c b/samsung-ipc/ipc_util.c
index 7f6973e..e55dcee 100644
--- a/samsung-ipc/ipc_util.c
+++ b/samsung-ipc/ipc_util.c
@@ -74,7 +74,7 @@ void ipc_client_log_send(struct ipc_client *client,
case IPC_CLIENT_TYPE_FMT:
ipc_client_log(client, "%s: SEND FMT!", prefix);
ipc_client_log(client, "%s: Request: mseq=0x%02x command=%s (0x%04x) type=%s",
- prefix, request->mseq, ipc_command_to_str(IPC_COMMAND(request)), IPC_COMMAND(request), ipc_response_type_to_str(request->type));
+ prefix, request->mseq, ipc_command_to_str(IPC_COMMAND(request)), IPC_COMMAND(request), ipc_request_type_to_str(request->type));
#ifdef DEBUG
if (request->length > 0) {
ipc_client_log(client, "==== FMT DATA DUMP ====");