diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-11-23 15:50:53 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-11-23 15:50:53 (GMT) |
commit | 56951d947c339184c7f9f78b2c804623a42e0678 (patch) | |
tree | 2c316168074a0a2928dca0581a5c0d1bdea7702f /hl/test/test_lite.c | |
parent | dee149bfc4ae91116358f3f2261c75443589c130 (diff) | |
download | hdf5-56951d947c339184c7f9f78b2c804623a42e0678.zip hdf5-56951d947c339184c7f9f78b2c804623a42e0678.tar.gz hdf5-56951d947c339184c7f9f78b2c804623a42e0678.tar.bz2 |
[svn-r9562] Purpose:
bug fix
Description:
the Makefile.in of the hl tests was not including a "srcdir" include path
the test table .c file was missing also the srcdir path
Solution:
add it
Platforms tested:
Misc. update:
Diffstat (limited to 'hl/test/test_lite.c')
-rw-r--r-- | hl/test/test_lite.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hl/test/test_lite.c b/hl/test/test_lite.c index 56bad3a..bc5fb72 100644 --- a/hl/test/test_lite.c +++ b/hl/test/test_lite.c @@ -13,7 +13,9 @@ #include <stdlib.h> -#include "H5HL.h" + +#include "H5LT.h" + #define FILE_NAME "test_lite1.h5" #define FILE_NAME2 "test_lite2.h5" |