From: Elliott Hughes Date: Mon, 14 Jan 2013 17:56:21 +0000 (-0800) Subject: Fix my git mistake. X-Git-Tag: android-x86-4.4-r1~313^2~25^2~65^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=99c32055cb50443f722c55914869c1f6bb941959;p=android-x86%2Fbionic.git Fix my git mistake. This was the formatting change that was supposed to be in cf23905a4bcc7bfdd109be5b6d69ad06877aa217. Change-Id: Ib79fa031b68f6f541f532507eb589afeaedb831f --- diff --git a/linker/linker.cpp b/linker/linker.cpp index 74a246d0a..0a89b7224 100755 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -1571,8 +1571,9 @@ static bool soinfo_link_image(soinfo* si) { case DT_DEBUG: // Set the DT_DEBUG entry to the address of _r_debug for GDB // if the dynamic table is writable - if (dynamic_flags & PF_W) + if ((dynamic_flags & PF_W) != 0) { *d = (int) &_r_debug; + } break; case DT_RELA: DL_ERR("unsupported DT_RELA in \"%s\"", si->name);