summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/console/vtxprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c
index 803f691dfe94..fba76bcb71d7 100644
--- a/src/console/vtxprintf.c
+++ b/src/console/vtxprintf.c
@@ -67,7 +67,7 @@ static int number(void (*tx_byte)(unsigned char byte, void *data), unsigned long
precision = i;
}
size -= precision;
- if (!(type & (ZEROPAD + LEFT))) {
+ if (!(type & (ZEROPAD | LEFT))) {
while (size-- > 0)
call_tx(' '), count++;
}