Use new %p format suffixes in gdb
[deliverable/binutils-gdb.git] / gdb / darwin-nat-info.c
index 88ee027f71e8bbddaf1eb7fbeb42a980518b4c3a..4469cd52136f3c11cb94efba50e390b273cdfc20 100644 (file)
    Tiger is no longer important.  */
 
 #include "defs.h"
+#include "symtab.h"
+#include "gdbtypes.h"
+#include "gdbcore.h"
+#include "value.h"
+#include "gdbcmd.h"
+#include "inferior.h"
+#include "gdbarch.h"
 
-/* Standard C includes.  */
-#include <mach/mach_init.h>
-#include <mach/mach_port.h>
-#include <mach/mach_vm.h>
-#include <mach/task.h>
-#include <mach/thread_act.h>
-#include <mach/thread_info.h>
-#include <mach/vm_map.h>
 #include <sys/sysctl.h>
 
-/* Local non-gdb includes.  */
 #include "darwin-nat.h"
-#include "gdbcmd.h"
-#include "gdbcore.h"
-#include "gdbtypes.h"
-#include "inferior.h"
-#include "symtab.h"
-#include "value.h"
+
+#include <mach/thread_info.h>
+#include <mach/thread_act.h>
+#include <mach/task.h>
+#include <mach/vm_map.h>
+#include <mach/mach_port.h>
+#include <mach/mach_init.h>
+#include <mach/mach_vm.h>
 
 #define CHECK_ARGS(what, args) do { \
   if ((NULL == args) || ((args[0] != '0') && (args[1] != 'x'))) \
@@ -665,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");
This page took 0.023854 seconds and 4 git commands to generate.