diff options
| author | Björn Esser <besser82@fedoraproject.org> | 2017-12-14 17:14:47 +0100 |
|---|---|---|
| committer | Björn Esser <besser82@fedoraproject.org> | 2017-12-14 18:47:24 +0100 |
| commit | 02da9c4e7cafb36083566e511cc7913d8922aaa6 (patch) | |
| tree | c7993993d3f0536512a0ddfb811f44d7cc7479fe /swaymsg | |
| parent | 8272a9bae0d288b479c517dde3e831ea3889dc7f (diff) | |
Adaptions for API change in json-c v0.13
Diffstat (limited to 'swaymsg')
| -rw-r--r-- | swaymsg/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index 2f9cfb14..0ee7c76f 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -9,7 +9,7 @@ #include <sys/socket.h> #include <ctype.h> #include <unistd.h> -#include <json-c/json.h> +#include "sway_json_helper.h" #include "stringop.h" #include "ipc-client.h" #include "readline.h" @@ -149,7 +149,7 @@ static void pretty_print_version(json_object *v) { static void pretty_print_clipboard(json_object *v) { if (success(v, true)) { if (json_object_is_type(v, json_type_array)) { - for (int i = 0; i < json_object_array_length(v); ++i) { + for (json_ar_len_t i = 0; i < json_object_array_length(v); ++i) { json_object *o = json_object_array_get_idx(v, i); printf("%s\n", json_object_get_string(o)); } |
