From 759af0a48df36faf4ffda0d515cabcd6ffd9ee6e Mon Sep 17 00:00:00 2001 From: louis Date: Thu, 2 Apr 2015 15:11:34 +0200 Subject: introduced libskindesignerapi --- helpers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'helpers.c') diff --git a/helpers.c b/helpers.c index 1a2ef4a..db39511 100644 --- a/helpers.c +++ b/helpers.c @@ -176,7 +176,7 @@ std::vector& splitstring::split(char delim, int rep) { std::string work = data(); std::string buf = ""; int i = 0; - while (i < work.length()) { + while (i < (int)work.length()) { if (work[i] != delim) buf += work[i]; else if (rep == 1) { @@ -495,7 +495,7 @@ int afuzzy_checkSUB(const char *t, AFUZZY *fuzzy) return 0; } -static int afuzzy_checkFLT(const char *t, AFUZZY *fuzzy) +int afuzzy_checkFLT(const char *t, AFUZZY *fuzzy) { register Uint FilterR = 0; register Uint FilterR1; -- cgit v1.2.3