diff options
author | Richard Hughes <richard@hughsie.com> | 2016-08-22 09:55:17 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2016-08-22 10:04:44 +0100 |
commit | 18c524132d315e2fbf8d8be5bbe3e4b1faeb0ff9 (patch) | |
tree | c4c04c9139859bab147deae8f99c251796b192c8 /client | |
parent | e660570b428b5a645e391070608b25b5a5b38ebf (diff) | |
download | appstream-glib-18c524132d315e2fbf8d8be5bbe3e4b1faeb0ff9.tar.gz |
trivial: Fix several -Wsign-conversion issues on ARM
Diffstat (limited to 'client')
-rw-r--r-- | client/as-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/as-util.c b/client/as-util.c index c3c525d..8d51ad8 100644 --- a/client/as-util.c +++ b/client/as-util.c @@ -3087,7 +3087,7 @@ as_util_mirror_screenshots_app_url (AsUtilPrivate *priv, /* save new file */ ret = g_file_set_contents (cache_filename, msg->response_body->data, - msg->response_body->length, + (gssize) msg->response_body->length, error); if (!ret) goto out; |