From 55555bbca244f54f5c7761891eb583a52892111b Mon Sep 17 00:00:00 2001 From: Fernando Nasser Date: Sun, 20 Feb 2000 18:23:31 +0000 Subject: 2000-02-19 Philippe De Muyter * cli-out.c (cli_table_header): Type of parameter `alignment' is `enum ui_align', not `int'. (cli_field_string, cli_field_skip): Likewise. --- gdb/cli-out.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/cli-out.c') diff --git a/gdb/cli-out.c b/gdb/cli-out.c index d906510..ed9817f 100644 --- a/gdb/cli-out.c +++ b/gdb/cli-out.c @@ -132,7 +132,7 @@ void cli_table_header (uiout, width, alignment, colhdr) struct ui_out *uiout; int width; - int alignment; + enum ui_align alignment; char *colhdr; { cli_field_string (uiout, 0, width, alignment, 0, colhdr); @@ -164,7 +164,7 @@ cli_field_int (uiout, fldno, width, alignment, fldname, value) struct ui_out *uiout; int fldno; int width; - int alignment; + enum ui_align alignment; char *fldname; int value; { @@ -181,7 +181,7 @@ cli_field_skip (uiout, fldno, width, alignment, fldname) struct ui_out *uiout; int fldno; int width; - int alignment; + enum ui_align alignment; char *fldname; { cli_field_string (uiout, fldno, width, alignment, fldname, ""); @@ -194,7 +194,7 @@ void cli_field_string (struct ui_out *uiout, int fldno, int width, - int align, + enum ui_align align, char *fldname, const char *string) { -- cgit v1.1