mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Fix missing semicolon
This commit is contained in:
parent
bd345cdccd
commit
d36ed9cd0d
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ void NodeList::processDomainServerPathQueryResponse(QSharedPointer<NLPacket> pac
|
|||
packet->readPrimitive(&numViewpointBytes);
|
||||
|
||||
// pull the viewpoint from the packet
|
||||
auto stringData = packet->read(numViewpointBytes)
|
||||
auto stringData = packet->read(numViewpointBytes);
|
||||
if (stringData.size() == numViewpointBytes) {
|
||||
QString viewpoint = QString::fromUtf8(stringData);
|
||||
|
||||
|
|
Loading…
Reference in a new issue