From c02216120ba3e03ec74f8194ab72b47559f0638d Mon Sep 17 00:00:00 2001 From: AlexeyAB Date: Fri, 28 Sep 2018 20:43:47 +0300 Subject: [PATCH] Compile fix --- src/image.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/image.c b/src/image.c index 56c41f6c..e79fc098 100644 --- a/src/image.c +++ b/src/image.c @@ -23,6 +23,7 @@ #include "http_stream.h" #endif +extern int check_mistakes; int windows = 0; float colors[6][3] = { {1,0,1}, {0,0,1},{0,1,1},{0,1,0},{1,1,0},{1,0,0} }; @@ -961,8 +962,6 @@ image ipl_to_image(IplImage* src) return out; } -extern int check_mistakes; - image load_image_cv(char *filename, int channels) { IplImage* src = 0;