Shorten the negative response code log message.
authorChristopher Peplin <chris.peplin@rhubarbtech.com>
Tue, 18 Feb 2014 22:29:08 +0000 (17:29 -0500)
committerChristopher Peplin <chris.peplin@rhubarbtech.com>
Tue, 18 Feb 2014 22:29:08 +0000 (17:29 -0500)
src/uds/uds.c

index 88d56bc..b35e241 100644 (file)
@@ -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);
     }