diff options
author | shankar | 2010-04-08 03:04:12 +0000 |
---|---|---|
committer | shankar | 2010-04-08 03:04:12 +0000 |
commit | cdcd0eb9d6ed7ff996e644102fbbeb262bd9a4e6 (patch) | |
tree | a9fdb0f17f2760b3ad237ed0e919d9f197046446 /guththila | |
parent | 71bbb0324edd8f398bf30d2401998fb6193a4f01 (diff) | |
download | axis2c-cdcd0eb9d6ed7ff996e644102fbbeb262bd9a4e6.tar.gz axis2c-cdcd0eb9d6ed7ff996e644102fbbeb262bd9a4e6.tar.bz2 |
Fixing 64bit compilation issue
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@931763 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'guththila')
-rw-r--r-- | guththila/src/guththila_xml_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guththila/src/guththila_xml_parser.c b/guththila/src/guththila_xml_parser.c index 7d61254..07c9cd5 100644 --- a/guththila/src/guththila_xml_parser.c +++ b/guththila/src/guththila_xml_parser.c @@ -484,7 +484,7 @@ guththila_token_evaluate_references( guththila_char_t *p = start; guththila_char_t *q = NULL; guththila_char_t *entity = NULL; - int entity_len = 0; + size_t entity_len = 0; while(p < end && *p != '&') { |