Accept -Wno- prefix in ARI
[deliverable/binutils-gdb.git] / gdb / darwin-nat-info.c
index ca3b2e872523c4027b9b6be83bccd5603a41f379..b862c4485b003cfc9b67bf7b47105cb7a64fffcc 100644 (file)
@@ -34,6 +34,7 @@
 #include "value.h"
 #include "gdbcmd.h"
 #include "inferior.h"
+#include "gdbarch.h"
 
 #include <sys/sysctl.h>
 
@@ -664,14 +665,14 @@ darwin_debug_regions_recurse (task_t task)
                             unparse_inheritance (r_info.inheritance));
        uiout->field_string ("share-mode",
                             unparse_share_mode (r_info.share_mode));
-       uiout->field_int ("depth", r_depth);
+       uiout->field_signed ("depth", r_depth);
        uiout->field_string ("submap",
                             r_info.is_submap ? _("sm ") : _("obj"));
        tag = unparse_user_tag (r_info.user_tag);
        if (tag)
          uiout->field_string ("tag", tag);
        else
-         uiout->field_int ("tag", r_info.user_tag);
+         uiout->field_signed ("tag", r_info.user_tag);
       }
 
       uiout->text ("\n");
@@ -809,7 +810,7 @@ info_mach_exceptions_command (const char *args, int from_tty)
        }
       else if (strcmp (args, "host") == 0)
        {
-         /* FIXME: This need a privilegied host port!  */
+         /* FIXME: This needs a privileged host port!  */
          kret = host_get_exception_ports
            (darwin_host_self, EXC_MASK_ALL, info.masks,
             &info.count, info.ports, info.behaviors, info.flavors);
This page took 0.026172 seconds and 4 git commands to generate.