gdb/gdbserver

* linux-bfin-low.c (the_low_target): Use NULL instead of 0.
This commit is contained in:
Yao Qi 2013-02-18 14:54:57 +00:00
parent cf29fc6188
commit 4f3cee1ca1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-02-18 Yao Qi <yao@codesourcery.com>
* linux-bfin-low.c (the_low_target): Use NULL instead of 0.
2013-02-14 Pedro Alves <palves@redhat.com> 2013-02-14 Pedro Alves <palves@redhat.com>
Plug memory leak. Plug memory leak.

View File

@ -102,7 +102,7 @@ struct linux_target_ops the_low_target = {
bfin_set_pc, bfin_set_pc,
bfin_breakpoint, bfin_breakpoint,
bfin_breakpoint_len, bfin_breakpoint_len,
0, NULL, /* breakpoint_reinsert_addr */
2, 2,
bfin_breakpoint_at, bfin_breakpoint_at,
}; };