diff options
Diffstat (limited to 'gdb/ui-out.c')
-rw-r--r-- | gdb/ui-out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ui-out.c b/gdb/ui-out.c index 8f745da..774be2c 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -702,7 +702,7 @@ ui_out_redirect (struct ui_out *uiout, struct ui_file *outstream) /* Test the flags against the mask given. */ int -ui_out_test_flags (struct ui_out *uiout, int mask) +ui_out_test_flags (struct ui_out *uiout, ui_out_flags mask) { return (uiout->flags & mask); } @@ -923,7 +923,7 @@ ui_out_query_field (struct ui_out *uiout, int colno, struct ui_out * ui_out_new (const struct ui_out_impl *impl, void *data, - int flags) + ui_out_flags flags) { struct ui_out *uiout = new ui_out (); |