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

Attempt to fix SLC6 specific compilation error

parent cfd82d29
Branches
Tags
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.
Please register or to comment