summaryrefslogtreecommitdiff
path: root/helpers.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-04-02 15:11:34 +0200
committerlouis <louis.braun@gmx.de>2015-04-02 15:11:34 +0200
commit759af0a48df36faf4ffda0d515cabcd6ffd9ee6e (patch)
tree3cf3d62b2b7539b4c982b8dc6de29d25cabc5d42 /helpers.c
parentfb62699a2d162f92dd73d86fcf5501e3f96eea75 (diff)
downloadvdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.gz
vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.bz2
introduced libskindesignerapi
Diffstat (limited to 'helpers.c')
-rw-r--r--helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers.c b/helpers.c
index 1a2ef4a..db39511 100644
--- a/helpers.c
+++ b/helpers.c
@@ -176,7 +176,7 @@ std::vector<std::string>& 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;