diff options
Diffstat (limited to 'tools/h5repack/h5repack_main.c')
-rw-r--r-- | tools/h5repack/h5repack_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c index 8ae0f91..73b77b5 100644 --- a/tools/h5repack/h5repack_main.c +++ b/tools/h5repack/h5repack_main.c @@ -90,6 +90,11 @@ int main(int argc, char **argv) /* pack it */ h5repack(infile,outfile,&options); +#if defined(H5_REPACK_DEBUG) + if (h5repack_verify(outfile,&options)<=0) + printf("Warning: Output file does not have some of the requested filters\n"); +#endif + /* free tables */ h5repack_end(&options); |