diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-01-23 16:35:32 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-01-23 16:35:32 -0500 |
commit | a416715372bb51bcdc1d05426afbf5e909b5984a (patch) | |
tree | 3b5239943a68a0b74194aba4baa642236e54dc9e /sway | |
parent | 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370 (diff) |
Revert "s/numlen/log10/g"
This reverts commit 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370.
Diffstat (limited to 'sway')
-rw-r--r-- | sway/commands.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c index 58fc4aa5..9f6e5032 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -14,7 +14,6 @@ #include <limits.h> #include <float.h> #include <libinput.h> -#include <math.h> #include "stringop.h" #include "layout.h" #include "focus.h" @@ -1581,7 +1580,7 @@ static struct cmd_results *cmd_bar(int argc, char **argv) { int i; for (i = 0; i < config->bars->length; ++i) { if (bar == config->bars->items[i]) { - const int len = 5 + log10(i) + 1; // "bar-" + i + \0 + const int len = 5 + numlen(i); // "bar-" + i + \0 bar->id = malloc(len * sizeof(char)); snprintf(bar->id, len, "bar-%d", i); break; |