Thu May 21 13:14:25 1998 John Metzler <jmetzler@cygnus.com>
[deliverable/binutils-gdb.git] / gdb / tracepoint.c
index 04feb654e4cbf7c2c8b012c42c733f62c6197a5d..2916944897373ee298f6caff920bd1123fd796c8 100644 (file)
@@ -1086,13 +1086,13 @@ parse_and_eval_memrange (arg, addr, typecode, offset, size)
 
 /* compare memranges for qsort */
 static int
-memrange_cmp (voidpa, voidpbb)
+memrange_cmp (voidpa, voidpb)
      void *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;
This page took 0.023525 seconds and 4 git commands to generate.