Revision 26a76461 disas.c

b/disas.c
58 58
    /* Actually, address between memaddr and memaddr + len was
59 59
       out of bounds.  */
60 60
    (*info->fprintf_func) (info->stream,
61
			   "Address 0x%llx is out of bounds.\n", memaddr);
61
			   "Address 0x%" PRIx64 " is out of bounds.\n", memaddr);
62 62
}
63 63

  
64 64
/* This could be in a separate file, to save miniscule amounts of space
......
73 73
     bfd_vma addr;
74 74
     struct disassemble_info *info;
75 75
{
76
    (*info->fprintf_func) (info->stream, "0x%llx", addr);
76
    (*info->fprintf_func) (info->stream, "0x%" PRIx64, addr);
77 77
}
78 78

  
79 79
/* Just return the given address.  */

Also available in: Unified diff