diff options
author | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
commit | 759af0a48df36faf4ffda0d515cabcd6ffd9ee6e (patch) | |
tree | 3cf3d62b2b7539b4c982b8dc6de29d25cabc5d42 /helpers.c | |
parent | fb62699a2d162f92dd73d86fcf5501e3f96eea75 (diff) | |
download | vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.gz vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.bz2 |
introduced libskindesignerapi
Diffstat (limited to 'helpers.c')
-rw-r--r-- | helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |