Fix the type of struct bbf's arc_count member: according to gcc's

definition of struct bb_function_info in libgcc2.c, it should be
an int, not a long.
This commit is contained in:
Tim J. Robbins 2004-05-29 01:22:53 +00:00
parent 7671b766a6
commit b71e13d373

View File

@ -29,7 +29,7 @@ typedef long long gcov_type;
struct bbf {
long checksum;
long arc_count;
int arc_count;
u_long name;
};