summaryrefslogtreecommitdiff
path: root/gdb/amd64fbsd-tdep.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2015-02-27 13:17:43 -0500
committerJohn Baldwin <jhb@FreeBSD.org>2015-03-13 14:01:38 -0400
commit773eacf5b0362c755ac47cb66d15d07558d9ce20 (patch)
treeb7a25bd632875a446e200f6d82372c140278d891 /gdb/amd64fbsd-tdep.c
parent4bf8c6e8986890caa482c845d2c4a0ff238c1e28 (diff)
downloadbinutils-gdb-773eacf5b0362c755ac47cb66d15d07558d9ce20.tar.gz
Style fixes.
- Do not leave operators at end-of-line. - Fix block indentation in if-else chain. gdb/ChangeLog: * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes. * i386fbsd-tdep.c: Fix style in various gdb_static_assert expressions. (i386fbsd_sigtramp_p): Likewise.
Diffstat (limited to 'gdb/amd64fbsd-tdep.c')
-rw-r--r--gdb/amd64fbsd-tdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/amd64fbsd-tdep.c b/gdb/amd64fbsd-tdep.c
index e11b0f371ec..62dcb83d6d0 100644
--- a/gdb/amd64fbsd-tdep.c
+++ b/gdb/amd64fbsd-tdep.c
@@ -51,8 +51,8 @@ amd64fbsd_sigtramp_p (struct frame_info *this_frame)
if (!safe_frame_unwind_memory (this_frame, pc, buf, sizeof buf))
return 0;
- if (memcmp (buf, amd64fbsd_sigtramp_code, sizeof amd64fbsd_sigtramp_code) !=
- 0)
+ if (memcmp (buf, amd64fbsd_sigtramp_code, sizeof amd64fbsd_sigtramp_code)
+ != 0)
return 0;
return 1;