mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
Minor bugfixes after trying to get a 29K target to build.
This commit is contained in:
parent
841c051c44
commit
e36ca74a03
@ -58,7 +58,7 @@ extern struct target_ops adapt_ops; /* Forward declaration */
|
||||
static void adapt_fetch_registers ();
|
||||
static int adapt_store_registers ();
|
||||
static void adapt_close ();
|
||||
static int adapt_clear_breakpoints()
|
||||
static int adapt_clear_breakpoints();
|
||||
|
||||
/*
|
||||
* Processor types. It is assumed that the adapt has the correct
|
||||
|
@ -402,7 +402,7 @@ the baud rate, and the name of the program to run on the remote system.");
|
||||
|
||||
/* Close out all files and local state before this target loses control. */
|
||||
|
||||
void
|
||||
static void
|
||||
eb_close (quitting)
|
||||
int quitting;
|
||||
{
|
||||
|
@ -287,9 +287,9 @@ mm_open (name, from_tty)
|
||||
/* Find the first whitespace character, it separates dev_name from
|
||||
prog_name. */
|
||||
for (p = name;
|
||||
*p != '\0' && !isspace (*p); p++)
|
||||
p && *p && !isspace (*p); p++)
|
||||
;
|
||||
if (*p == '\0')
|
||||
if (p == 0 || *p == '\0')
|
||||
erroid:
|
||||
error ("Usage : <command> <serial-device> <baud-rate> [progname]");
|
||||
dev_name = (char*)malloc (p - name + 1);
|
||||
|
Loading…
Reference in New Issue
Block a user