Skip to content
Snippets Groups Projects
Commit 168c7442 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

replay: fix string printf output: add .c_str()

parent 6e447608
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,7 @@ bool Replay::readAndAddSubscription(std::ifstream &file, uint16_t msg_size)
timestamp_found = true;
if (type_name_full != "uint64_t") {
PX4_ERR("Unsupported timestamp type %s, ignoring the topic %s", type_name_full,
PX4_ERR("Unsupported timestamp type %s, ignoring the topic %s", type_name_full.c_str(),
orb_meta->o_name);
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment