Code Review
/
apps
/
low-level-can-service.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
1d44ff2
)
Shorten the negative response code log message.
author
Christopher Peplin
<chris.peplin@rhubarbtech.com>
Tue, 18 Feb 2014 22:29:08 +0000
(17:29 -0500)
committer
Christopher Peplin
<chris.peplin@rhubarbtech.com>
Tue, 18 Feb 2014 22:29:08 +0000
(17:29 -0500)
src/uds/uds.c
patch
|
blob
|
history
diff --git
a/src/uds/uds.c
b/src/uds/uds.c
index
88d56bc
..
b35e241
100644
(file)
--- 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,
- "n
egative response code
: 0x%x, ",
+ "n
rc
: 0x%x, ",
response->negative_response_code);
}