[binutils-gdb] Fix formatting in solib-svr4.c
Simon Marchi
simark@sourceware.org
Mon Aug 20 02:06:00 GMT 2018
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c44deb735ef492f8799cbb35c5f2566fc2dba19d
commit c44deb735ef492f8799cbb35c5f2566fc2dba19d
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date: Sun Aug 19 22:03:58 2018 -0400
Fix formatting in solib-svr4.c
Fix some formatting issues which I have missed during review.
gdb/ChangeLog:
* solib-svr4.c (svr4_exec_displacement): Fix formatting.
Diff:
---
gdb/ChangeLog | 4 ++++
gdb/solib-svr4.c | 8 ++++----
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cb87cee..ff4d1cb 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-08-19 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * solib-svr4.c (svr4_exec_displacement): Fix formatting.
+
2018-08-19 Michael Spang <spang@google.com>
PR gdb/11786
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c
index 8458950..29d0731 100644
--- a/gdb/solib-svr4.c
+++ b/gdb/solib-svr4.c
@@ -2711,8 +2711,8 @@ svr4_exec_displacement (CORE_ADDR *displacementp)
CentOS-5 has problems with filesz, memsz as well.
Strip also modifies memsz of PT_TLS.
See PR 11786. */
- if (phdr2[i].p_type == PT_GNU_RELRO ||
- phdr2[i].p_type == PT_TLS)
+ if (phdr2[i].p_type == PT_GNU_RELRO
+ || phdr2[i].p_type == PT_TLS)
{
Elf32_External_Phdr tmp_phdr = *phdrp;
Elf32_External_Phdr tmp_phdr2 = *phdr2p;
@@ -2844,8 +2844,8 @@ svr4_exec_displacement (CORE_ADDR *displacementp)
CentOS-5 has problems with filesz, memsz as well.
Strip also modifies memsz of PT_TLS.
See PR 11786. */
- if (phdr2[i].p_type == PT_GNU_RELRO ||
- phdr2[i].p_type == PT_TLS)
+ if (phdr2[i].p_type == PT_GNU_RELRO
+ || phdr2[i].p_type == PT_TLS)
{
Elf64_External_Phdr tmp_phdr = *phdrp;
Elf64_External_Phdr tmp_phdr2 = *phdr2p;
More information about the Gdb-cvs
mailing list