aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1995-07-20 22:04:37 +0000
committerFred Fish <fnf@specifix.com>1995-07-20 22:04:37 +0000
commit032f80d8d45856defb0e70c4703b1c9d03b35ede (patch)
tree33397068db5ba5b7b8f1bb437336c1ec9814dd2f /gdb/top.c
parent5c54124babc0fa0b89be7a04c245d1784a9dcbaa (diff)
downloadgdb-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 0afed966..3e07508 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -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) */