diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-02-08 12:30:42 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-02-08 12:30:42 +0100 |
| commit | 1737189e783636c117c160743f6f364499577920 (patch) | |
| tree | 24017e3e53a810dc27c9e2b9d2ed33bb15d3b386 | |
| parent | 325ab19e99d84796beffc37d41492e2ef41ed3cb (diff) | |
Fix clang warnings
| -rw-r--r-- | common/log.c | 2 | ||||
| -rw-r--r-- | sway/commands.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/log.c b/common/log.c index 0c0ecf89..adba0021 100644 --- a/common/log.c +++ b/common/log.c @@ -171,7 +171,7 @@ void error_handler(int sig) { sway_log(L_ERROR, "Unable to allocate memory to show maps"); break; } - sway_log(L_ERROR, m); + sway_log(L_ERROR, "%s", m); } fclose(maps); } diff --git a/sway/commands.c b/sway/commands.c index b8af0d06..6a93c84a 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -870,8 +870,8 @@ static struct cmd_results *cmd_move(int argc, char **argv) { uint32_t w = size->w - g.size.w; uint32_t h = size->h - g.size.h; - view->x = g.origin.x = MIN(w, MAX(x, 0)); - view->y = g.origin.y = MIN(h, MAX(y, 0)); + view->x = g.origin.x = MIN((int32_t)w, MAX(x, 0)); + view->y = g.origin.y = MIN((int32_t)h, MAX(y, 0)); wlc_view_set_geometry(view->handle, 0, &g); } |
