Port: use portable print format for size_t
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 30 May 2017 19:55:15 +0000 (15:55 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 9 Jun 2017 20:58:16 +0000 (16:58 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
lib/values.c

index 8ddbe7de55638cb2bfc7f6ad5d93fc751eacaaad..ea69643e4dff8d5dde51687e7d7885051957cec2 100644 (file)
@@ -674,7 +674,7 @@ struct bt_value *bt_value_string_create_init(const char *val)
                goto end;
        }
 
-       BT_LOGD("Creating string value object: val-len=%lu", strlen(val));
+       BT_LOGD("Creating string value object: val-len=%zu", strlen(val));
        string_obj = g_new0(struct bt_value_string, 1);
 
        if (!string_obj) {
This page took 0.025053 seconds and 4 git commands to generate.