diff options
author | Pierre Muller <muller@sourceware.org> | 2009-10-06 21:27:59 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2009-10-06 21:27:59 +0000 |
commit | f8bf576366f8b023d1dc14fd0b44a4b103862874 (patch) | |
tree | c2a0ea410a82a10fd733169523d43b8bb5e9237a /gdb/aix-thread.c | |
parent | * plugin.cc (add_input_library): New. (diff) | |
download | binutils-gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.tar.gz binutils-gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.tar.bz2 binutils-gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.zip |
ARI fix: OP eol rule.
* ada-exp.y (block_lookup): Avoid operator at end of line.
* aix-thread.c (pd_enable): Idem.
* alpha-tdep.c (alpha_next_pc): Idem.
* arm-tdep.c (arm_skip_prologue, arm_scan_prologue): Idem.
(condition_true, coff_sym_is_thumb): Idem.
Diffstat (limited to 'gdb/aix-thread.c')
-rw-r--r-- | gdb/aix-thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index f1b34d58683..92693d632a3 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -893,8 +893,8 @@ pd_enable (void) stub_name = NULL; status = pthdb_session_pthreaded (PD_USER, PTHDB_FLAG_REGS, &pd_callbacks, &stub_name); - if ((status != PTHDB_SUCCESS && - status != PTHDB_NOT_PTHREADED) || !stub_name) + if ((status != PTHDB_SUCCESS + && status != PTHDB_NOT_PTHREADED) || !stub_name) return; /* Set a breakpoint on the returned stub function. */ |