@@ -1296,7 +1296,7 @@ bool CurlFtp::checkLocalFileExist(const std::string& localFile)
/* 检查文件是否存在 */
bool result = false;
#if (__cplusplus >= 201703L)
- result = std::filesystem::exists(localFile)
+ result = std::filesystem::exists(localFile);
#else
result = QFile(localFile.c_str()).exists();
#endif /* (__cplusplus >= 201703L) */