bugfix: high fifo depth more than 32 bit

This commit is contained in:
2020-01-27 15:21:19 +01:00
parent 2314fdabd1
commit a0208778c1
2 changed files with 5 additions and 5 deletions

View File

@@ -193,10 +193,10 @@ void Implementation::SetupFifoStructure() {
}
FILE_LOG(logINFO) << "Memory Allocated Per Fifo: "
<< (((generalData->imageSize) +
<< (double)(((generalData->imageSize) +
(generalData->fifoBufferHeaderSize)) *
fifoDepth)
<< " bytes";
fifoDepth) / (1000.00 * 1000.00)
<< " Mb";
FILE_LOG(logINFO) << numThreads << " Fifo structure(s) reconstructed";
}