diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-04-06 14:54:54 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-04-06 14:54:54 (GMT) |
commit | cade98122a510d6d2071e81ffd4c6e31d9374261 (patch) | |
tree | e9a7640160c8a8be5000d2e4b18c9ff51415ec15 /tools | |
parent | 24160340cea62bb0a8e67967ee08dfa733c0e4f6 (diff) | |
download | hdf5-cade98122a510d6d2071e81ffd4c6e31d9374261.zip hdf5-cade98122a510d6d2071e81ffd4c6e31d9374261.tar.gz hdf5-cade98122a510d6d2071e81ffd4c6e31d9374261.tar.bz2 |
[svn-r16671] fix compiler error on a missing "static" declaration
tested: linux
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5repack/h5repacktst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/h5repacktst.c b/tools/h5repack/h5repacktst.c index 1f791d2..9a753ef 100644 --- a/tools/h5repack/h5repacktst.c +++ b/tools/h5repack/h5repacktst.c @@ -108,7 +108,7 @@ static int make_hlinks(hid_t loc_id); static int make_early(void); static int make_layout(hid_t loc_id); #ifdef H5_HAVE_FILTER_SZIP -int make_szip(hid_t loc_id); +static int make_szip(hid_t loc_id); #endif /* H5_HAVE_FILTER_SZIP */ static int make_deflate(hid_t loc_id); static int make_shuffle(hid_t loc_id); |