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 | e99daf92c2ee344adf7c88920f50744ace6a5b22 (diff) | |
download | gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.zip gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.tar.gz gdb-f8bf576366f8b023d1dc14fd0b44a4b103862874.tar.bz2 |
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 f1b34d5..92693d6 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. */ |