Browse Source

Corrected copy/paste error resulting in unused variable warning.

QGC4.4
Bryant 11 years ago
parent
commit
21bb147471
  1. 1
      src/qgcunittest/MockMavlinkFileServer.cc

1
src/qgcunittest/MockMavlinkFileServer.cc

@ -97,6 +97,7 @@ void MockMavlinkFileServer::_openCommand(QGCUASFileManager::Request* request) @@ -97,6 +97,7 @@ void MockMavlinkFileServer::_openCommand(QGCUASFileManager::Request* request)
size_t cchPath = strnlen((char *)request->data, sizeof(request->data));
Q_ASSERT(cchPath != sizeof(request->data));
Q_UNUSED(cchPath); // Fix initialized-but-not-referenced warning on release builds
path = (char *)request->data;
// Check path against one of our known test cases

Loading…
Cancel
Save