diff options
author | Fred Fish <fnf@specifix.com> | 1995-07-20 22:04:37 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1995-07-20 22:04:37 +0000 |
commit | 032f80d8d45856defb0e70c4703b1c9d03b35ede (patch) | |
tree | 33397068db5ba5b7b8f1bb437336c1ec9814dd2f /gdb/top.c | |
parent | 5c54124babc0fa0b89be7a04c245d1784a9dcbaa (diff) | |
download | gdb-032f80d8d45856defb0e70c4703b1c9d03b35ede.zip gdb-032f80d8d45856defb0e70c4703b1c9d03b35ede.tar.gz gdb-032f80d8d45856defb0e70c4703b1c9d03b35ede.tar.bz2 |
* top.c (show_endian): Cast first arg of printf_unfiltered to
correct type of "char *".
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) */ |