summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-03 12:18:33 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-03 12:18:33 -0500
commit64af0554cb8c60f56bf2c1fa5cd59b9c2c5758ff (patch)
treeee1e4a72450c5c2e592aca40c400e7a259f9f42d /tests
parentfe5f39179f7c85a2924c288149b5ecc8488918b1 (diff)
Print full payload by giving it enough buffer. DOH.
Diffstat (limited to 'tests')
-rw-r--r--tests/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common.c b/tests/common.c
index 5995df74..554293c9 100644
--- a/tests/common.c
+++ b/tests/common.c
@@ -46,7 +46,7 @@ void mock_set_timer(uint16_t time_ms, void (*callback)) {
void message_received(const IsoTpMessage* message) {
debug("Received ISO-TP message:");
message_was_received = true;
- char str_message[24];
+ char str_message[48] = {0};
isotp_message_to_string(message, str_message, sizeof(str_message));
debug("%s", str_message);
last_message_received_arb_id = message->arbitration_id;
@@ -62,7 +62,7 @@ void message_sent(const IsoTpMessage* message, const bool success) {
} else {
debug("Unable to send ISO-TP message:");
}
- char str_message[24] = {0};
+ char str_message[48] = {0};
isotp_message_to_string(message, str_message, sizeof(str_message));
debug("%s", str_message);