Fix my git mistake.
This was the formatting change that was supposed to be in
cf23905a4b
.
Change-Id: Ib79fa031b68f6f541f532507eb589afeaedb831f
This commit is contained in:
parent
48c632a381
commit
99c32055cb
1 changed files with 2 additions and 1 deletions
|
@ -1571,8 +1571,9 @@ static bool soinfo_link_image(soinfo* si) {
|
||||||
case DT_DEBUG:
|
case DT_DEBUG:
|
||||||
// Set the DT_DEBUG entry to the address of _r_debug for GDB
|
// Set the DT_DEBUG entry to the address of _r_debug for GDB
|
||||||
// if the dynamic table is writable
|
// if the dynamic table is writable
|
||||||
if (dynamic_flags & PF_W)
|
if ((dynamic_flags & PF_W) != 0) {
|
||||||
*d = (int) &_r_debug;
|
*d = (int) &_r_debug;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case DT_RELA:
|
case DT_RELA:
|
||||||
DL_ERR("unsupported DT_RELA in \"%s\"", si->name);
|
DL_ERR("unsupported DT_RELA in \"%s\"", si->name);
|
||||||
|
|
Loading…
Reference in a new issue