diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-29 01:48:05 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-29 01:48:05 +0000 |
commit | 4a3456fc9e50d067055bb484190d8adca39cdc99 (patch) | |
tree | 3675c14d743b8594ca103956d6087ddd48dff7e7 /gdb/tracepoint.c | |
parent | 94415c7e2e213c021d9a780631d806a3d8d86eaa (diff) | |
download | gdb-4a3456fc9e50d067055bb484190d8adca39cdc99.zip gdb-4a3456fc9e50d067055bb484190d8adca39cdc99.tar.gz gdb-4a3456fc9e50d067055bb484190d8adca39cdc99.tar.bz2 |
* tracepoint.c (memrange_cmp): Another typo fix; `memrbnge' ->
`memrange'.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index b059eec..2916944 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -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; |