diff options
Diffstat (limited to 'hl/src/H5LT.c')
-rw-r--r-- | hl/src/H5LT.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c index 4598dc5..5d281a7 100644 --- a/hl/src/H5LT.c +++ b/hl/src/H5LT.c @@ -12,14 +12,14 @@ * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -#include "H5LT.h" +#include "H5LTprivate.h" #include <string.h> #include <stdlib.h> #include <assert.h> +#include <stdio.h> + /* For Lex and Yacc */ -#define SUCCEED 0 -#define FAIL -1 #define COL 3 #define LIMIT 512 #define INCREMENT 1024 @@ -3590,7 +3590,7 @@ herr_t H5LT_set_attribute_string(hid_t dset_id, if (H5Tclose(tid)<0) goto out; - return SUCCESS; + return SUCCEED; /* error zone, gracefully close */ out: |