2000-02-19 Philippe De Muyter <phdm@macqel.be>
authorFernando Nasser <fnasser@redhat.com>
Sun, 20 Feb 2000 18:23:31 +0000 (18:23 +0000)
committerFernando Nasser <fnasser@redhat.com>
Sun, 20 Feb 2000 18:23:31 +0000 (18:23 +0000)
        * 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
gdb/cli-out.c

index 2923769e8a6697cd2b2f66fcc68aadf5c1c82f0f..a9c948b36210077ab9794fe31f4da7c03d7e0c82 100644 (file)
@@ -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>:
index d906510aba3e77c1688e10def7d490cd51690722..ed9817f01f6cb7b1d25bc7e90b8df514702b3830 100644 (file)
@@ -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)
 {
This page took 0.028528 seconds and 4 git commands to generate.