21 lines
800 B
Diff
21 lines
800 B
Diff
2007-01-20 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
* arch-utils.c (show_endian): Correct reversed condition.
|
|
|
|
===================================================================
|
|
RCS file: /cvs/src/src/gdb/arch-utils.c,v
|
|
retrieving revision 1.138
|
|
retrieving revision 1.139
|
|
diff -u -r1.138 -r1.139
|
|
--- src/gdb/arch-utils.c 2007/01/13 23:24:43 1.138
|
|
+++ src/gdb/arch-utils.c 2007/01/20 18:31:29 1.139
|
|
@@ -322,7 +322,7 @@
|
|
show_endian (struct ui_file *file, int from_tty, struct cmd_list_element *c,
|
|
const char *value)
|
|
{
|
|
- if (target_byte_order_user != BFD_ENDIAN_UNKNOWN)
|
|
+ if (target_byte_order_user == BFD_ENDIAN_UNKNOWN)
|
|
if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
|
|
fprintf_unfiltered (file, _("The target endianness is set automatically "
|
|
"(currently big endian)\n"));
|