Fixed issue 1101

git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@1068 d0cd1f9f-072b-0410-8dd7-cf729c803f20
This commit is contained in:
theraysmith@gmail.com 2014-04-24 00:09:37 +00:00
parent 4decc0f405
commit 600d9451cb

View File

@ -96,13 +96,13 @@ void render_blob(void *window, TBLOB *blob, C_COL color) {
* that was supplied as input.
**********************************************************************/
void render_edgepts(void *window, EDGEPT *edgept, C_COL color) {
if (!edgept)
return;
float x = edgept->pos.x;
float y = edgept->pos.y;
EDGEPT *this_edge = edgept;
if (!edgept)
return;
c_line_color_index(window, color);
c_move(window, x, y);
do {