diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-12 12:38:39 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-12 12:38:39 +0000 |
commit | 74884f7bddd0cddf5d798f9ec6c5d8d8d19d6bfd (patch) | |
tree | f51750ce9ede565da440cb3fc9a1ad41830245d0 /gdb | |
parent | 5cbc4f2ea11ab187c157530105583eecef444074 (diff) | |
download | gdb-74884f7bddd0cddf5d798f9ec6c5d8d8d19d6bfd.zip gdb-74884f7bddd0cddf5d798f9ec6c5d8d8d19d6bfd.tar.gz gdb-74884f7bddd0cddf5d798f9ec6c5d8d8d19d6bfd.tar.bz2 |
gdb/
* spu-tdep.c (spu_catch_start): Fix compilation error typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/spu-tdep.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2c413a3..5006250 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-11-12 Jan Kratochvil <jan.kratochvil@redhat.com> + + * spu-tdep.c (spu_catch_start): Fix compilation error typo. + 2010-11-11 Phil Muldoon <pmuldoon@redhat.com> * python/py-breakpoint.c (BPPY_REQUIRE_VALID): Check if bp is diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index 0e73d92..5da0081 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -1896,7 +1896,7 @@ spu_catch_start (struct objfile *objfile) 0 /* ignore_count */, AUTO_BOOLEAN_FALSE /* pending_break_support */, NULL /* ops */, 0 /* from_tty */, 1 /* enabled */, - 0 /* internal */);); + 0 /* internal */); } |