tabbed

[fork] xembed tabbing program
Log | Files | Refs | README | LICENSE

commit 9f31fdb0c722bca1ac938ab48541062d6739b38a
parent 7056d44594e071a194e6c902bdf2f4bfa0612de0
Author: hhvn <dev@haydenvh.com>
Date:   Sun, 28 Mar 2021 00:32:01 +0000

tabbed.c: add missing semicolon

Diffstat:
Mtabbed.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tabbed.c b/tabbed.c @@ -370,7 +370,7 @@ drawbar(void) } snprintf(tabtitle, sizeof(tabtitle), "[%d] %s", c + 1, clients[c]->name); - drawtext(tabtitle, col) + drawtext(tabtitle, col); dc.x += dc.w; clients[c]->tabx = dc.x; }