aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-udi.c
diff options
context:
space:
mode:
authorJason Molenda <crash@cygnus>1994-08-31 21:43:27 +0000
committerJason Molenda <crash@cygnus>1994-08-31 21:43:27 +0000
commit057815134f25d19307d6f6fb2a6956a9d52b719f (patch)
tree4ae0ae8638c61bca47335264654a2082e6d84def /gdb/remote-udi.c
parent1e75b5f53099318e67d54e805550ca740cc46533 (diff)
downloadfsf-binutils-gdb-057815134f25d19307d6f6fb2a6956a9d52b719f.zip
fsf-binutils-gdb-057815134f25d19307d6f6fb2a6956a9d52b719f.tar.gz
fsf-binutils-gdb-057815134f25d19307d6f6fb2a6956a9d52b719f.tar.bz2
Wed Aug 31 14:40:33 1994 Jason Molenda (crash@phydeaux.cygnus.com)
* remote-udi.c (udi_read_inferior_memory,udi_write_inferior_memory): change typeo in error msg (`inferrior' -> `inferior').
Diffstat (limited to 'gdb/remote-udi.c')
-rw-r--r--gdb/remote-udi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c
index be79608..e57cad0 100644
--- a/gdb/remote-udi.c
+++ b/gdb/remote-udi.c
@@ -1325,7 +1325,7 @@ udi_write_inferior_memory (memaddr, myaddr, len)
if (Count > MAXDATA) Count = MAXDATA;
To.Offset = memaddr + nwritten;
if(UDIWrite(From, To, Count, Size, &CountDone, HostEndian))
- { error("UDIWrite() failed in udi_write_inferrior_memory");
+ { error("UDIWrite() failed in udi_write_inferior_memory");
break;
}
else
@@ -1362,7 +1362,7 @@ udi_read_inferior_memory(memaddr, myaddr, len)
if (Count > MAXDATA) Count = MAXDATA;
From.Offset = memaddr + nread;
if(err = UDIRead(From, To, Count, Size, &CountDone, HostEndian))
- { error("UDIRead() failed in udi_read_inferrior_memory");
+ { error("UDIRead() failed in udi_read_inferior_memory");
break;
}
else