summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-21 19:30:22 (GMT)
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-08-21 19:30:22 (GMT)
commit7c784881c8114dedc9942ab6359d7a235b8be6df (patch)
tree71ae6839ceda3a5903973a49f3b2b13ec8ac296c /src
parent472deb37084dc269c2a9ad42579bfa762c032984 (diff)
downloadpatchelf-7c784881c8114dedc9942ab6359d7a235b8be6df.zip
patchelf-7c784881c8114dedc9942ab6359d7a235b8be6df.tar.gz
patchelf-7c784881c8114dedc9942ab6359d7a235b8be6df.tar.bz2
Comment out overly verbose debug line
Diffstat (limited to 'src')
-rw-r--r--src/patchelf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patchelf.cc b/src/patchelf.cc
index e1520a8..694b2f8 100644
--- a/src/patchelf.cc
+++ b/src/patchelf.cc
@@ -836,7 +836,7 @@ void ElfFile<ElfFileParamNames>::rewriteHeaders(Elf_Addr phdrAddress)
string section = sectionsByOldIndex[rdi(sym->st_shndx)];
assert(!section.empty());
unsigned int newIndex = findSection3(section); // inefficient
- debug("rewriting symbol %d: index = %d (%s) -> %d\n", entry, rdi(sym->st_shndx), section.c_str(), newIndex);
+ //debug("rewriting symbol %d: index = %d (%s) -> %d\n", entry, rdi(sym->st_shndx), section.c_str(), newIndex);
wri(sym->st_shndx, newIndex);
}
}