Fix type-limits warnings, uint can't be < 0
[babeltrace.git] / plugins / text / pretty / print.c
index a53a567f080807189da974f648016acdee8541ff..5e63deb0bca15d9145a249bc1514231be58de3c3 100644 (file)
@@ -922,11 +922,6 @@ int print_sequence(struct pretty_component *pretty,
        uint64_t i;
 
        len = bt_field_array_get_length(seq);
-       if (len < 0) {
-               ret = -1;
-               goto end;
-       }
-
        g_string_append(pretty->string, "[");
 
        pretty->depth++;
This page took 0.023051 seconds and 4 git commands to generate.