summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2024-03-22 10:20:09 +0100
committerBenny Baumann <BenBE@geshi.org>2024-03-22 10:20:09 +0100
commit484f029d8b0e0dbb5df37e3aff0dbf059fd857a1 (patch)
tree09c64d2eec9d8480a16d50fcdbb2b6e83957a4ac
parentc7bfe749fceb4025f281f05661f9b9d762d8f411 (diff)
Typo
-rw-r--r--Row.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Row.c b/Row.c
index 0bf860e5..752bd64a 100644
--- a/Row.c
+++ b/Row.c
@@ -445,7 +445,7 @@ int Row_printPercentage(float val, char* buffer, size_t n, uint8_t width, int* a
assert(n >= 6 && width >= 4 && "Invalid width in Row_printPercentage()");
// truncate in favour of abort in xSnprintf()
width = (uint8_t)CLAMP(width, 4, n - 2);
- assert(width < n - 1 && "Insuficient space to print column");
+ assert(width < n - 1 && "Insufficient space to print column");
if (isNonnegative(val)) {
if (val < 0.05F)

© 2014-2024 Faster IT GmbH | imprint | privacy policy