xml-entities.cc was refusing to compile on g++ on my machine, with the
following error:

ocr-utils/xml-entities.cc:119: error: invalid conversion from 'const
char*' to 'char*'

The following change fixes the error:

119c119
<         while((p = strchr(begin, '&'))) {
---
>         while((p = strchr((char *)begin, '&'))) {

-- 
You received this message because you are subscribed to the Google Groups 
"ocropus" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/ocropus?hl=en.

Reply via email to