diff options
-rw-r--r-- | twrpTar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twrpTar.cpp b/twrpTar.cpp index cc09b78ab..a31fe1221 100644 --- a/twrpTar.cpp +++ b/twrpTar.cpp @@ -621,7 +621,7 @@ int twrpTar::tarList(std::vector<TarListStruct> *TarList, unsigned thread_id) { void* twrpTar::createList(void *cookie) { twrpTar* threadTar = (twrpTar*) cookie; - if (threadTar->tarList(threadTar->ItemList, threadTar->thread_id) == -1) { + if (threadTar->tarList(threadTar->ItemList, threadTar->thread_id) != 0) { LOGINFO("ERROR tarList for thread ID %i\n", threadTar->thread_id); return (void*)-2; } |