fixed wrong assert condition

dev
Yann Collet 2018-12-20 14:46:23 -08:00
parent ffba142406
commit 0ed8ee4a37
1 changed files with 1 additions and 1 deletions

View File

@ -2334,7 +2334,7 @@ FIO_listFile(fileInfo_t* total, const char* inFileName, int displayLevel)
}
displayInfo(inFileName, &info, displayLevel);
*total = FIO_addFInfo(*total, info);
assert(error>=0 || error<=1);
assert(error == info_success || error == info_frame_error);
return error;
}
}