* ada-lang.c (ada_array_bound, ada_type_match,

_initialize_ada_language): Fix K&R definitions.
	* ada-tasks.c (get_current_task): Fix K&R definitions.
	* ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
This commit is contained in:
Aidan Skinner
2002-09-08 17:44:22 +00:00
parent 78c87cb7e6
commit 4dc8198746
4 changed files with 12 additions and 12 deletions

View File

@@ -75,8 +75,7 @@ static int ada_val_print_1 (struct type *, char *, int, CORE_ADDR,
/* Make TYPE unsigned if its range of values includes no negatives. */
static void
adjust_type_signedness (type)
struct type *type;
adjust_type_signedness (struct type *type)
{
if (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
&& TYPE_LOW_BOUND (type) >= 0)