Skip to content
Snippets Groups Projects
Commit d8256a48 authored by Steven Murray's avatar Steven Murray
Browse files

Attempt to fix SLC6 specific compilation error

parent 9153377b
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,8 @@ int sendCommand(const int argc, const char **argv) {
}
if(bytesRead != 1) {
throw std::runtime_error(std::string("Failed to read first byte from ") + cmdPath +
": Expected to read exactly 1 byte, actually read " + std::to_string(bytesRead) + " bytes");
": Expected to read exactly 1 byte, actually read " +
std::to_string((long long unsigned int)bytesRead) + " bytes");
}
rc = rc_char - '0';
}
......
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