From 55555bbca244f54f5c7761891eb583a52892111b Mon Sep 17 00:00:00 2001 From: Fernando Nasser Date: Sun, 20 Feb 2000 18:23:31 +0000 Subject: [PATCH] 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/ChangeLog | 6 ++++++ gdb/cli-out.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2923769..a9c948b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +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. + 2000-02-18 Jim Blandy From Jimmy Guo : 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) { -- 2.7.4