commit 714559812e222f988e18a52ffecd8dcaf9604ad5
parent 9425ce2fba6dd643c240386901de370ac90cc337
Author: Carl Smedstad <carl.smedstad@protonmail.com>
Date: Fri, 30 Dec 2022 10:35:25 +0100
Use correct length for strncmp comparison
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/swaybar/render.c b/swaybar/render.c
@@ -292,7 +292,7 @@ static uint32_t render_status_block(struct render_context *ctx,
}
double offset = 0;
- if (strncmp(block->align, "left", 5) == 0) {
+ if (strncmp(block->align, "left", 4) == 0) {
offset = x_pos;
} else if (strncmp(block->align, "right", 5) == 0) {
offset = x_pos + width - text_width;