diff options
author | Simon Busch <morphis@gravedo.de> | 2012-08-28 13:58:14 +0200 |
---|---|---|
committer | Simon Busch <morphis@gravedo.de> | 2012-08-28 13:58:14 +0200 |
commit | d619e86de0f524d2b56bf871b28273533abd9366 (patch) | |
tree | a3b34fe9742abbbd44a05869fcac006dfb203900 | |
parent | 222f78a5f065cc1c1cbefe77ef96807ea996d0fb (diff) | |
download | external_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.zip external_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.tar.gz external_libsamsung-ipc-d619e86de0f524d2b56bf871b28273533abd9366.tar.bz2 |
Use correct helper method to print request type
-rw-r--r-- | samsung-ipc/ipc_util.c | 2 |
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 ===="); |