diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2007-03-02 14:21:36 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2007-03-02 14:21:36 (GMT) |
commit | ec412665853c302e55f87c4b69314c597b2054fd (patch) | |
tree | 249e19e77ceaebe37e15f7b69f6ad09ceca57ada /c++/test | |
parent | a0d5e09775b83e851386710fb563ffee70210c28 (diff) | |
download | hdf5-ec412665853c302e55f87c4b69314c597b2054fd.zip hdf5-ec412665853c302e55f87c4b69314c597b2054fd.tar.gz hdf5-ec412665853c302e55f87c4b69314c597b2054fd.tar.bz2 |
[svn-r13442] H5system.c file didn't include H5MMprivate.h; that caused warnings on VMS; fixed
tfilter.cpp compilation failed on VMS; fixed by casting filter_bogus to (H5Z_func_t)
Platforms tested:
kagiso, VMS server
Diffstat (limited to 'c++/test')
-rw-r--r-- | c++/test/tfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/tfilter.cpp b/c++/test/tfilter.cpp index 3eac80b..56fc999 100644 --- a/c++/test/tfilter.cpp +++ b/c++/test/tfilter.cpp @@ -66,7 +66,7 @@ const H5Z_class_t H5Z_BOGUS[1] = {{ "bogus", /* Filter name for debugging */ NULL, /* The "can apply" callback */ NULL, /* The "set local" callback */ - filter_bogus, /* The actual filter function */ + (H5Z_func_t)filter_bogus, /* The actual filter function */ }}; /*------------------------------------------------------------------------- |