| commit | 8454bd71f00aba4b383d42a8fec44695c9b0f018 | [log] [tgz] |
|---|---|---|
| author | Petr Machata <pmachata@redhat.com> | Tue Apr 17 17:12:44 2012 +0200 |
| committer | Petr Machata <pmachata@redhat.com> | Thu Apr 19 01:54:37 2012 +0200 |
| tree | 441eff0ef7a5b0dca473da3a8f280154a668185d | |
| parent | f685a3d0b3aaf9cf2bda30937ddc1a55009ee01a [diff] [blame] |
Don't emit newline in one debug message
diff --git a/sysdeps/linux-gnu/proc.c b/sysdeps/linux-gnu/proc.c index d2621e8..e1e3c36 100644 --- a/sysdeps/linux-gnu/proc.c +++ b/sysdeps/linux-gnu/proc.c
@@ -314,7 +314,7 @@ /* XXX The double cast should be removed when * target_address_t becomes integral type. */ *ret = (target_address_t)(uintptr_t)entry.d_un.d_val; - debug(2, "found address: %p in dtag %d\n", *ret, d_tag); + debug(2, "found address: %p in dtag %d", *ret, d_tag); return 0; } }