Skip to content
Snippets Groups Projects
Commit 085d6927 authored by Don Lipari's avatar Don Lipari
Browse files

Fixed the cause of a compile warning in print_fields.c

parent e40c093c
No related branches found
No related tags found
No related merge requests found
......@@ -236,9 +236,9 @@ extern void print_fields_uint64(print_field_t *field, uint64_t value, int last)
else if(print_fields_parsable_print)
printf("%llu|", (long long unsigned) value);
else if(field->len == abs_len)
printf("%*llu ", abs_len, value);
printf("%*llu ", abs_len, (long long unsigned) value);
else
printf("%-*llu ", abs_len, value);
printf("%-*llu ", abs_len, (long long unsigned) value);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment