X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fviews%2Fdecoder_output%2FQHexView.cpp;h=951c818a5f7e26ec062b716387c821264385869d;hb=ec4f16ff84c688f2572c6e3d2e2184aee95f46f7;hp=2fe54bf876075710327ef8a428bf4654f9d06606;hpb=5cdf186dce795efe1280c9688bf8fec8e684803b;p=pulseview.git diff --git a/pv/views/decoder_output/QHexView.cpp b/pv/views/decoder_output/QHexView.cpp index 2fe54bf8..951c818a 100644 --- a/pv/views/decoder_output/QHexView.cpp +++ b/pv/views/decoder_output/QHexView.cpp @@ -154,7 +154,7 @@ size_t QHexView::create_hex_line(size_t start, size_t end, QString* dest, // Determine start address for the row uint64_t row = start / BYTES_PER_LINE; uint64_t offset = row * BYTES_PER_LINE; - end = std::min(end, offset + BYTES_PER_LINE); + end = std::min((uint64_t)end, offset + BYTES_PER_LINE); if (with_offset) dest->append(QString("%1 ").arg(row * BYTES_PER_LINE, 10, 16, QChar('0')).toUpper());