summaryrefslogtreecommitdiffstats
path: root/hl/src/H5LTparse.y
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2014-04-08 19:35:34 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2014-04-08 19:35:34 (GMT)
commitae846315702f9b038c3c0ed7c6d565f179d45a05 (patch)
treefcf48e002b854c12189f1221cb306f5171c5a79a /hl/src/H5LTparse.y
parent9cd1a1bb60c66650208033d61ff377df5ac1a72e (diff)
downloadhdf5-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/H5LTparse.y')
-rw-r--r--hl/src/H5LTparse.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/hl/src/H5LTparse.y b/hl/src/H5LTparse.y
index b91e97e..d4c786c 100644
--- a/hl/src/H5LTparse.y
+++ b/hl/src/H5LTparse.y
@@ -14,12 +14,12 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
%{
-#include<stdio.h>
-#include<string.h>
-#include<hdf5.h>
+#include <stdio.h>
+#include <string.h>
+#include <hdf5.h>
extern int yylex();
-extern int yyerror(char *);
+extern int yyerror(const char *);
#define STACK_SIZE 16
@@ -51,7 +51,7 @@ int asindex = -1; /*pointer to the top of array stack*/
hbool_t is_str_size = 0; /*flag to lexer for string size*/
hbool_t is_str_pad = 0; /*flag to lexer for string padding*/
-H5T_pad_t str_pad; /*variable for string padding*/
+H5T_str_t str_pad; /*variable for string padding*/
H5T_cset_t str_cset; /*variable for string character set*/
hbool_t is_variable = 0; /*variable for variable-length string*/
size_t str_size; /*variable for string size*/