Skip to content

Commit ed4e885

Browse files
committed
better message for streaming
1 parent 1e7c055 commit ed4e885

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ZSTD/src/H5Zzstd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ H5Z_filter_zstd(unsigned int flags, size_t cd_nelmts, const unsigned int cd_valu
7474
}
7575
if (contentSize == ZSTD_CONTENTSIZE_UNKNOWN) {
7676
PUSH_ERR("H5Z_filter_zstd", H5E_CALLBACK,
77-
"zstd frame does not record its decompressed size; the data was likely compressed "
78-
"with the zstd streaming API, which this filter does not support");
77+
"zstd frame missing decompressed size; data was likely compressed "
78+
"with the zstd streaming API, which is not supported");
7979
goto error;
8080
}
8181
if (contentSize == 0) {

0 commit comments

Comments
 (0)