diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-10-22 08:51:21 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-10-22 08:51:21 +0000 |
commit | 2bd4322ce9da262a27934a7a406872ed58d75a91 (patch) | |
tree | 2d2761e08b0c385dab46c54e6f3a4dd3e993d5fc /chvalid.c | |
parent | fca7d83ba55a6572df2d2b5be7672c11d1b13b04 (diff) | |
download | libxml2-2bd4322ce9da262a27934a7a406872ed58d75a91.tar.gz |
Stephane Bidoul pointed out another small glitch missing a const Daniel
* chvalid.c genChRanges.py: Stephane Bidoul pointed out another
small glitch missing a const
Daniel
Diffstat (limited to 'chvalid.c')
-rwxr-xr-x | chvalid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -162,7 +162,7 @@ xmlChRangeGroup xmlIsIdeographicGroup = * Returns: true if character valid, false otherwise */ int -xmlCharInRange (unsigned int val, xmlChRangeGroupPtr rptr) { +xmlCharInRange (unsigned int val, const xmlChRangeGroupPtr rptr) { int low, high, mid; xmlChSRangePtr sptr; xmlChLRangePtr lptr; |