mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 09:38:57 +00:00
* breakpoint.c (compare_breakpoints): Fix comparison.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2012-10-18 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* breakpoint.c (compare_breakpoints): Fix comparison.
|
||||
|
||||
2012-10-18 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* valprint.c (generic_emit_char, generic_printstr): Pass size of
|
||||
|
||||
@@ -11766,7 +11766,7 @@ compare_breakpoints (const void *a, const void *b)
|
||||
the number 0. */
|
||||
if (ua < ub)
|
||||
return -1;
|
||||
return ub > ub ? 1 : 0;
|
||||
return ua > ub ? 1 : 0;
|
||||
}
|
||||
|
||||
/* Delete breakpoints by address or line. */
|
||||
|
||||
Reference in New Issue
Block a user