diff --git a/src/Cutter.cpp b/src/Cutter.cpp index 103b5ab0..a3c97df9 100644 --- a/src/Cutter.cpp +++ b/src/Cutter.cpp @@ -1418,7 +1418,7 @@ QList CutterCore::getXRefs(RVA addr, bool to, bool whole_functi continue; xref.from = xrefObject["from"].toVariant().toULongLong(); - xref.from_str = Core()->cmd("fd " + xrefObject["from"].toString()).trimmed(); + xref.from_str = Core()->cmd("fd " + QString::number(xrefObject["from"].toInt())).trimmed(); if (!whole_function && !to && xref.from != addr) continue;