mirror of
https://github.com/facebook/zstd.git
synced 2025-10-08 00:04:02 -04:00
fixed wrong assert condition
This commit is contained in:
parent
ffba142406
commit
0ed8ee4a37
@ -2334,7 +2334,7 @@ FIO_listFile(fileInfo_t* total, const char* inFileName, int displayLevel)
|
|||||||
}
|
}
|
||||||
displayInfo(inFileName, &info, displayLevel);
|
displayInfo(inFileName, &info, displayLevel);
|
||||||
*total = FIO_addFInfo(*total, info);
|
*total = FIO_addFInfo(*total, info);
|
||||||
assert(error>=0 || error<=1);
|
assert(error == info_success || error == info_frame_error);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user