diff options
author | rodrigc <rodrigc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-11 22:14:28 +0000 |
---|---|---|
committer | rodrigc <rodrigc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-11 22:14:28 +0000 |
commit | c4354fbe25cdd867375cd4c27a6b1309831c248a (patch) | |
tree | 9537b207782211dbeb04c31f107109158f27175f /libchill | |
parent | 4e66089db43933232c88bbbdb5012d2e12abafa2 (diff) | |
download | gcc-c4354fbe25cdd867375cd4c27a6b1309831c248a.tar.gz |
2002-01-11 Craig Rodrigues <rodrigc@gcc.gnu.org>
PR other/5299
* delaycase.c (__delay_event): Fix spelling error.
* waitbuffer.c: Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48778 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libchill')
-rw-r--r-- | libchill/ChangeLog | 6 | ||||
-rw-r--r-- | libchill/delaycase.c | 2 | ||||
-rw-r--r-- | libchill/waitbuffer.c | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/libchill/ChangeLog b/libchill/ChangeLog index a62ab15dda1..6186902ae65 100644 --- a/libchill/ChangeLog +++ b/libchill/ChangeLog @@ -1,3 +1,9 @@ +2002-01-11 Craig Rodrigues <rodrigc@gcc.gnu.org> + + PR other/5299 + * delaycase.c (__delay_event): Fix spelling error. + * waitbuffer.c: Same. + 2000-05-31 Richard Henderson <rth@cygnus.com> * Makefile.in (STROBJS): Get memmove.o from configure. diff --git a/libchill/delaycase.c b/libchill/delaycase.c index 3c2a3c7777a..b12d272d10a 100644 --- a/libchill/delaycase.c +++ b/libchill/delaycase.c @@ -95,7 +95,7 @@ __delay_event (ev_got, nevents, evptrs, priority, to, insloc, filename, lineno) continue; /* check if we already have processed this one, that means, this - event is mentioned more then once */ + event is mentioned more than once */ for (j = 0; j < i; j++) { if (evptrs[i].ev == evptrs[j].ev) diff --git a/libchill/waitbuffer.c b/libchill/waitbuffer.c index 939c4fca7a1..2d967d93e48 100644 --- a/libchill/waitbuffer.c +++ b/libchill/waitbuffer.c @@ -59,7 +59,7 @@ EXCEPTION (spacefail); * exceptions: * bufferinconsistency if something's wrong in the buffer queue's * spacefail out of heap space of datalength of receiver - * less then data avilable. + * less than data avilable. * * abstract: * implement the CHILL RECEIVE buffer CASE action. @@ -280,7 +280,7 @@ __wait_buffer (buf_got, nbuf, bufptr, datap, datalen, ins, if (retval == 0) retval = start_list->bufferaddr; else - /* more then one has been sent, that's wrong */ + /* more than one has been sent, that's wrong */ CAUSE_BUFFINCONS; /* update instance, if present */ |