diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-04-08 19:35:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-04-08 19:35:34 (GMT) |
commit | ae846315702f9b038c3c0ed7c6d565f179d45a05 (patch) | |
tree | fcf48e002b854c12189f1221cb306f5171c5a79a /hl/src/H5LTanalyze.l | |
parent | 9cd1a1bb60c66650208033d61ff377df5ac1a72e (diff) | |
download | hdf5-ae846315702f9b038c3c0ed7c6d565f179d45a05.zip hdf5-ae846315702f9b038c3c0ed7c6d565f179d45a05.tar.gz hdf5-ae846315702f9b038c3c0ed7c6d565f179d45a05.tar.bz2 |
[svn-r24987] HDFFV-8709, HDFFV-8776, HDFFV-8777, HDFFV-8778
Apply user patches, regenerate and patch results for windows.
Miminum changes tested locally
Diffstat (limited to 'hl/src/H5LTanalyze.l')
-rw-r--r-- | hl/src/H5LTanalyze.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5LTanalyze.l b/hl/src/H5LTanalyze.l index 7407520..9682f78 100644 --- a/hl/src/H5LTanalyze.l +++ b/hl/src/H5LTanalyze.l @@ -16,7 +16,7 @@ %{ #include <stdlib.h> #include <string.h> -#include<hdf5.h> +#include <hdf5.h> #include "H5LTparse.h" int my_yyinput(char *, int); @@ -181,7 +181,7 @@ int my_yyinput(char *buf, int max_size) return ret; } -int H5LTyyerror(char *msg) +int H5LTyyerror(const char *msg) { printf("ERROR: %s before \"%s\".\n", msg, yytext); return 0; |