From 032f80d8d45856defb0e70c4703b1c9d03b35ede Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Thu, 20 Jul 1995 22:04:37 +0000 Subject: [PATCH] * top.c (show_endian): Cast first arg of printf_unfiltered to correct type of "char *". --- gdb/ChangeLog | 5 +++++ gdb/top.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7767c6dcb5..59dda57384 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Thu Jul 20 15:04:57 1995 Fred Fish + + * 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 * lynx-nat.c (child_wait): A thread_id of zero from wait apparently diff --git a/gdb/top.c b/gdb/top.c index 0afed966bc..3e07508368 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) */ -- 2.34.1