diff options
author | John Gilmore <gnu@cygnus> | 1992-09-19 11:55:20 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-09-19 11:55:20 +0000 |
commit | f7fe7196c28e49766eac16900d46db1d969bdb2a (patch) | |
tree | f5162dc2a1dd58e9d40961d03cd2da715a0ef656 /gdb/remote-udi.c | |
parent | 45413b27d2c2cb6aa62c5736546af947f07ceebf (diff) | |
download | gdb-f7fe7196c28e49766eac16900d46db1d969bdb2a.zip gdb-f7fe7196c28e49766eac16900d46db1d969bdb2a.tar.gz gdb-f7fe7196c28e49766eac16900d46db1d969bdb2a.tar.bz2 |
* configure.in: removed target_dependent line.
* remote-mm.c (mm_attach): change printf to error to prevent
fallthrough bug.
* remote-udi.c (udi_attach): change printf to error to prevent
fallthrough bug.
Diffstat (limited to 'gdb/remote-udi.c')
-rw-r--r-- | gdb/remote-udi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 4309774..bac27aa 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -424,7 +424,7 @@ udi_attach (args, from_tty) DENTER("udi_attach()"); if (udi_session_id < 0) - printf ("UDI connection not opened yet, use the 'target udi' command.\n"); + error ("UDI connection not opened yet, use the 'target udi' command.\n"); if (from_tty) printf ("Attaching to remote program %s...\n", prog_name); |