summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2016-03-22 06:53:45 +0100
committerlouis <louis.braun@gmx.de>2016-03-22 06:53:45 +0100
commit842fc1a254ec13a5de2c2bd47fa20e4bd9746ab6 (patch)
tree5dd9429fa55a4249d5649546276c2363625383a0
parent15feb0e16ed05227d92385978ab6fe256d928ca6 (diff)
downloadvdr-plugin-skindesigner-842fc1a254ec13a5de2c2bd47fa20e4bd9746ab6.tar.gz
vdr-plugin-skindesigner-842fc1a254ec13a5de2c2bd47fa20e4bd9746ab6.tar.bz2
fixed typo
-rw-r--r--coreengine/complextypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreengine/complextypes.c b/coreengine/complextypes.c
index 7c9f77a..41feafd 100644
--- a/coreengine/complextypes.c
+++ b/coreengine/complextypes.c
@@ -1220,7 +1220,7 @@ char *cTextExpr::DeterminateText(void) {
strcat(retVal, str);
} else if (t->type == eTexttokenType::inttoken) {
int value = tokenContainer->IntToken(t->tokenIndex);
- if (value > 0) {
+ if (value >= 0) {
cString str = cString::sprintf("%d", value);
strcat(retVal, *str);
}