aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Rachel K <raech.kanati@gmail.com>2018-01-04 15:43:40 +0000
committerLibravatar Rachel K <raech.kanati@gmail.com>2018-01-04 15:46:37 +0000
commitdc0e6d46fb63aad09b8767d94976c6e56db5ffdb (patch)
tree7b88fa1609b8445e3ef9ad773245e9386542f867
parentMerge pull request #1539 from acrisci/bindings (diff)
downloadsway-dc0e6d46fb63aad09b8767d94976c6e56db5ffdb.tar.gz
sway-dc0e6d46fb63aad09b8767d94976c6e56db5ffdb.tar.zst
sway-dc0e6d46fb63aad09b8767d94976c6e56db5ffdb.zip
update json-c dep to 0.13
-rw-r--r--meson.build2
-rw-r--r--swaymsg/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 029aea46..49392126 100644
--- a/meson.build
+++ b/meson.build
@@ -18,7 +18,7 @@ datadir = get_option('datadir')
18sysconfdir = get_option('sysconfdir') 18sysconfdir = get_option('sysconfdir')
19prefix = get_option('prefix') 19prefix = get_option('prefix')
20 20
21jsonc = dependency('json-c', version: '>=0.12.1') 21jsonc = dependency('json-c', version: '>=0.13')
22pcre = dependency('libpcre') 22pcre = dependency('libpcre')
23wlroots = dependency('wlroots') 23wlroots = dependency('wlroots')
24wayland_server = dependency('wayland-server') 24wayland_server = dependency('wayland-server')
diff --git a/swaymsg/main.c b/swaymsg/main.c
index 8a720fca..a34eced4 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -156,7 +156,7 @@ static void pretty_print_version(json_object *v) {
156static void pretty_print_clipboard(json_object *v) { 156static void pretty_print_clipboard(json_object *v) {
157 if (success(v, true)) { 157 if (success(v, true)) {
158 if (json_object_is_type(v, json_type_array)) { 158 if (json_object_is_type(v, json_type_array)) {
159 for (int i = 0; i < json_object_array_length(v); ++i) { 159 for (size_t i = 0; i < json_object_array_length(v); ++i) {
160 json_object *o = json_object_array_get_idx(v, i); 160 json_object *o = json_object_array_get_idx(v, i);
161 printf("%s\n", json_object_get_string(o)); 161 printf("%s\n", json_object_get_string(o));
162 } 162 }