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;
 		}
 	}