summaryrefslogtreecommitdiff
path: root/apps/interpreters/bas/value.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/interpreters/bas/value.c')
-rw-r--r--apps/interpreters/bas/value.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/interpreters/bas/value.c b/apps/interpreters/bas/value.c
index dafa93abe..2f5b9b95b 100644
--- a/apps/interpreters/bas/value.c
+++ b/apps/interpreters/bas/value.c
@@ -1343,7 +1343,7 @@ struct String *Value_toString(struct Value *this, struct String *s, char pad,
case -1:
{
++totalwidth;
- String_appendChar(&buf, sign = = -1 ? '-' : ' ');
+ String_appendChar(&buf, sign == -1 ? '-' : ' ');
break;
}
case 0: