diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-07-19 23:30:11 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-07-19 23:30:11 +0000 |
commit | adf40b2e16832f7382ee79e498d43a70ad22e305 (patch) | |
tree | 933de2a465a4003b9016471a466079459693ae3e /sim/mn10300/interp.c | |
parent | dc9e099fc0eced486ae2b49455c9da113c11f4ff (diff) | |
download | gdb-adf40b2e16832f7382ee79e498d43a70ad22e305.zip gdb-adf40b2e16832f7382ee79e498d43a70ad22e305.tar.gz gdb-adf40b2e16832f7382ee79e498d43a70ad22e305.tar.bz2 |
import gdb-1999-07-19 snapshot
Diffstat (limited to 'sim/mn10300/interp.c')
-rw-r--r-- | sim/mn10300/interp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/mn10300/interp.c b/sim/mn10300/interp.c index 12dffff..2003c2d 100644 --- a/sim/mn10300/interp.c +++ b/sim/mn10300/interp.c @@ -1114,10 +1114,10 @@ sim_open (kind, cb, abfd, argv) } else { - if ( NULL != board ) - { - printf("Error: invalid --board option.\n"); - return 0; + if (board != NULL) + { + sim_io_eprintf (sd, "Error: Board `%s' unknown.\n", board); + return 0; } } |