* tracepoint.c (memrange_cmp): Another typo fix; `memrbnge' ->

`memrange'.
This commit is contained in:
Tom Tromey 1998-04-29 01:48:05 +00:00
parent 94415c7e2e
commit 4a3456fc9e
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
Tue Apr 28 19:41:33 1998 Tom Tromey <tromey@cygnus.com>
* tracepoint.c (memrange_cmp): Another typo fix; `memrbnge' ->
`memrange'.
* tracepoint.c (memrange_cmp): Fixed typo in function intro.
Tue Apr 28 17:41:20 1998 Philippe De Muyter <phdm@macqel.be>

View file

@ -1092,7 +1092,7 @@ memrange_cmp (voidpa, voidpb)
struct memrange *a, *b;
a = (struct memrange *) voidpa;
b = (struct memrbnge *) voidpb;
b = (struct memrange *) voidpb;
if (a->type < b->type) return -1;
if (a->type > b->type) return 1;