File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -339,11 +339,11 @@ class ProgramStatus : public Program
339339 std::cout << " Latch FEC & CRC errors: \t " << std::boolalpha << fecStatus.latchFecCrcError << std::endl;
340340 std::cout << " Slow Control Framing locked: \t " << std::boolalpha << fecStatus.slowControlFramingLocked << std::endl;
341341 std::cout << " FEC single error count: \t "
342- << " 0x" << std::hex << fecStatus.fecSingleErrorCount << std::endl;
342+ << " 0x" << std::hex << ( unsigned int ) fecStatus.fecSingleErrorCount << std::endl;
343343 std::cout << " FEC double error count: \t "
344- << " 0x" << std::hex << fecStatus.fecDoubleErrorCount << std::endl;
344+ << " 0x" << std::hex << ( unsigned int ) fecStatus.fecDoubleErrorCount << std::endl;
345345 std::cout << " CRC error count: \t\t "
346- << " 0x" << std::hex << fecStatus.crcErrorCount << std::endl;
346+ << " 0x" << std::hex << ( unsigned int ) fecStatus.crcErrorCount << std::endl;
347347 }
348348 }
349349
You can’t perform that action at this time.
0 commit comments