mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
* top.c (show_endian): Cast first arg of printf_unfiltered to
correct type of "char *".
This commit is contained in:
parent
5c54124bab
commit
032f80d8d4
@ -1,3 +1,8 @@
|
||||
Thu Jul 20 15:04:57 1995 Fred Fish <fnf@cygnus.com>
|
||||
|
||||
* top.c (show_endian): Cast first arg of printf_unfiltered to
|
||||
correct type of "char *".
|
||||
|
||||
Thu Jul 20 14:18:51 1995 Jeffrey A. Law <law@rtl.cygnus.com>
|
||||
|
||||
* lynx-nat.c (child_wait): A thread_id of zero from wait apparently
|
||||
|
@ -3078,7 +3078,7 @@ show_endian (args, from_tty)
|
||||
(target_byte_order_auto
|
||||
? "The target endianness is set automatically (currently %s endian)\n"
|
||||
: "The target is assumed to be %s endian\n");
|
||||
printf_unfiltered (msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
|
||||
printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
|
||||
}
|
||||
|
||||
#endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
|
||||
|
Loading…
Reference in New Issue
Block a user