From: Christopher Peplin Date: Tue, 18 Feb 2014 22:29:08 +0000 (-0500) Subject: Shorten the negative response code log message. X-Git-Tag: 3.99.1~101^2~16 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=96160fc20d2c939e73773f3fbec2f2fd9482dcf4;p=apps%2Flow-level-can-service.git Shorten the negative response code log message. --- diff --git a/src/uds/uds.c b/src/uds/uds.c index 88d56bc..b35e241 100644 --- a/src/uds/uds.c +++ b/src/uds/uds.c @@ -319,7 +319,7 @@ void diagnostic_response_to_string(const DiagnosticResponse* response, if(!response->success) { bytes_used += snprintf(destination + bytes_used, destination_length - bytes_used, - "negative response code: 0x%x, ", + "nrc: 0x%x, ", response->negative_response_code); }