diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-02-18 17:29:08 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-02-18 17:29:08 -0500 |
commit | 96160fc20d2c939e73773f3fbec2f2fd9482dcf4 (patch) | |
tree | 2aebedaa3fd06d2c2ac51fa615c3e2a17ae4fba9 /src/uds | |
parent | 1d44ff2a0d14f8955a4efc26664d049150a8a18b (diff) |
Shorten the negative response code log message.
Diffstat (limited to 'src/uds')
-rw-r--r-- | src/uds/uds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uds/uds.c b/src/uds/uds.c index 88d56bc5..b35e2416 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); } |