diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2014-03-24 15:48:36 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2014-03-24 15:48:36 (GMT) |
commit | f251a0219ca3ebd748dac80637d3c74a290b9506 (patch) | |
tree | b9ef36c46dfd715abad918b16222f43a44cd81a3 /hl/src/H5LTanalyze.c | |
parent | f97d63cb95fa2595e5137a7ac6e0d1282fb5118b (diff) | |
download | hdf5-f251a0219ca3ebd748dac80637d3c74a290b9506.zip hdf5-f251a0219ca3ebd748dac80637d3c74a290b9506.tar.gz hdf5-f251a0219ca3ebd748dac80637d3c74a290b9506.tar.bz2 |
[svn-r24875] Description:
Update with corresponding information that was changed in
hl/src/H5Tanalyze.l in r24869.
Tested on:
Linux 2.6.32-431.5.1.el6.ppc64/64 (ostrich)
Diffstat (limited to 'hl/src/H5LTanalyze.c')
-rw-r--r-- | hl/src/H5LTanalyze.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/hl/src/H5LTanalyze.c b/hl/src/H5LTanalyze.c index c3e5d73..d133aa2 100644 --- a/hl/src/H5LTanalyze.c +++ b/hl/src/H5LTanalyze.c @@ -823,7 +823,7 @@ int my_yyinput(char *, int); #define YY_BUF_SIZE 262144 /*Define read buffer to be 256K*/ extern char *myinput; -extern int input_len; +extern size_t input_len; #define STACK_SIZE 16 @@ -858,10 +858,6 @@ extern hbool_t is_opq_tag; hbool_t first_quote = 1; -/* For Lex and Yacc */ -/*int input_len; -char *myinput;*/ - #define TAG_STRING 1 #line 843 "H5LTanalyze.c" @@ -2345,7 +2341,7 @@ int my_yyinput(char *buf, int max_size) int ret; memcpy(buf, myinput, input_len); - ret = input_len; + ret = (int)input_len; return ret; } |