From b3708258272d6f921be1c190d6579039e995d619 Mon Sep 17 00:00:00 2001 From: tjr Date: Sat, 29 May 2004 01:22:53 +0000 Subject: 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. --- usr.sbin/kernbb/kernbb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/kernbb/kernbb.c b/usr.sbin/kernbb/kernbb.c index 5b4a9a38..1ecd5ad 100644 --- a/usr.sbin/kernbb/kernbb.c +++ b/usr.sbin/kernbb/kernbb.c @@ -29,7 +29,7 @@ typedef long long gcov_type; struct bbf { long checksum; - long arc_count; + int arc_count; u_long name; }; -- cgit v1.1