diff --git a/src/common/CutterSeekable.cpp b/src/common/CutterSeekable.cpp index 4efce17e..4a0648a7 100644 --- a/src/common/CutterSeekable.cpp +++ b/src/common/CutterSeekable.cpp @@ -75,7 +75,8 @@ void CutterSeekable::seekToReference(RVA offset) if (refs.length()) { if (refs.length() > 1) { - qWarning() << "Too many references here. Weird behaviour expected."; + qWarning() << tr("More than one (%1) references here. Weird behaviour expected.") + .arg(refs.length()); } target = refs.at(0).to; @@ -83,4 +84,4 @@ void CutterSeekable::seekToReference(RVA offset) seek(target); } } -} \ No newline at end of file +}