Add exit(0) to dumpSTR and anotDump to fix compiler warning

This commit is contained in:
Guy Scharf 2021-07-08 10:23:57 -07:00
parent 10b3340359
commit bd21b1cda5
2 changed files with 4 additions and 1 deletions

View File

@ -124,5 +124,6 @@ int main(int argc, char *argv[]) {
qDebug() << "Offset: " << anno->offset << " Duration: " << anno->duration << " Text: " << anno->text; qDebug() << "Offset: " << anno->offset << " Duration: " << anno->duration << " Text: " << anno->text;
} }
} }
exit(0);
} }

View File

@ -193,4 +193,6 @@ int main(int argc, char *argv[]) {
// delete &str; // delete &str;
QThread::sleep(1); QThread::sleep(1);
qDebug() << "Done"; qDebug() << "Done";
exit(0);
} }