commit 3a980857cba80719e70ee3960b5b3b12923fda81
parent 69e1a421fc2ccecd93f79c9dd0537671138bb0a9
Author: Ian Fan <ianfan0@gmail.com>
Date: Wed, 1 Aug 2018 16:02:56 +0100
commands: better type for con_id string length
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sway/criteria.c b/sway/criteria.c
@@ -366,9 +366,9 @@ static char *get_focused_prop(enum criteria_token token) {
return NULL;
}
size_t id = view->swayc->id;
- int len = snprintf(NULL, 0, "%zu", id) + 1;
- char *id_str = malloc(len);
- snprintf(id_str, len, "%zu", id);
+ size_t id_size = snprintf(NULL, 0, "%zu", id) + 1;
+ char *id_str = malloc(id_size);
+ snprintf(id_str, id_size, "%zu", id);
value = id_str;
break;
case T_CON_MARK: // These do not support __focused__