aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-02-04 02:22:53 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-02-04 02:22:53 +0000
commitd351c7a6b3f41184512c13fe130b8151bf19ec8e (patch)
tree00789a521cb36437f1335d8937d92f2d5d732496 /gdb
parent4901e77de7b285c720a39c4153123d1c2b07aa17 (diff)
downloadgdb-d351c7a6b3f41184512c13fe130b8151bf19ec8e.zip
gdb-d351c7a6b3f41184512c13fe130b8151bf19ec8e.tar.gz
gdb-d351c7a6b3f41184512c13fe130b8151bf19ec8e.tar.bz2
* remote-udi.c (udi_attach): If no arguments, print error.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/remote-udi.c3
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f26c551..0fa4071 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+Thu Feb 3 12:38:58 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ * m68k-stub.c: Treat mc68332 like mc68020 most places. Provide
+ a special exceptionSize for the 68332.
+
+ * remote-udi.c (udi_attach): If no arguments, print error.
+
Thu Feb 3 17:34:05 1994 Fred Fish (fnf@cygnus.com)
* Makefile.in (VERSION): Bump to 4.12.1
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c
index d4c634e..17c1016 100644
--- a/gdb/remote-udi.c
+++ b/gdb/remote-udi.c
@@ -337,6 +337,9 @@ udi_attach (args, from_tty)
UDIBool HostEndian = 0;
UDIError err;
+ if (args == NULL)
+ error_no_arg ("program to attach");
+
if (udi_session_id < 0)
error ("UDI connection not opened yet, use the 'target udi' command.\n");