mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
2000-02-19 Philippe De Muyter <phdm@macqel.be>
* cli-out.c (cli_table_header): Type of parameter `alignment' is `enum ui_align', not `int'. (cli_field_string, cli_field_skip): Likewise.
This commit is contained in:
parent
278d4456c4
commit
55555bbca2
@ -1,3 +1,9 @@
|
||||
2000-02-19 Philippe De Muyter <phdm@macqel.be>
|
||||
|
||||
* 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 <jimb@redhat.com>
|
||||
|
||||
From Jimmy Guo <guo@cup.hp.com>:
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user