diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-06 17:20:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-06 17:20:14 (GMT) |
commit | 03edfaa6e90c150e017b2e8d6a6c0772b2a2650c (patch) | |
tree | d4cfe503fc60856205bbeab56ea524f48b7397c2 | |
parent | 2198c67ab7bd2c95a77c290f81d80e3130953749 (diff) | |
download | hdf5-03edfaa6e90c150e017b2e8d6a6c0772b2a2650c.zip hdf5-03edfaa6e90c150e017b2e8d6a6c0772b2a2650c.tar.gz hdf5-03edfaa6e90c150e017b2e8d6a6c0772b2a2650c.tar.bz2 |
[svn-r9753] Purpose:
Small bug fix
Description:
Patch szip_can_encode() test routine to return a value for all code paths.
Platforms tested:
None - very, very minor
-rw-r--r-- | test/h5test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/h5test.c b/test/h5test.c index c9948c6..94a5599 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -844,5 +844,6 @@ int h5_szip_can_encode(void ) (H5Z_FILTER_CONFIG_ENCODE_ENABLED|H5Z_FILTER_CONFIG_DECODE_ENABLED)) { return 1; } + return(-1); } #endif /* H5_HAVE_FILTER_SZIP */ |