Fix: use ssize_type for the return value of uri_parse_str_urls
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 7 Sep 2016 15:07:52 +0000 (11:07 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 7 Oct 2016 21:21:59 +0000 (17:21 -0400)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/lib/lttng-ctl/load.c

index 39003e9479776104519f2fff6771b6827259069c..b3cfba79eb0f5a031e1363c6535ca5c8535ec07d 100644 (file)
@@ -101,7 +101,8 @@ int lttng_load_session_attr_set_input_url(
        struct lttng_load_session_attr *attr, const char *url)
 {
        int ret = 0;
-       size_t len, size;
+       size_t len;
+       ssize_t size;
        struct lttng_uri *uris = NULL;
 
        if (!attr) {
This page took 0.02488 seconds and 4 git commands to generate.