From 4f579ddab55d7c49c3d7413e4da690e6609bfe25 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 10 Mar 2023 18:10:00 +0000 Subject: [PATCH] Tracks: missing \n in debug statement. --- tracks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tracks.c b/tracks.c index 0579d4b..6c7bf10 100644 --- a/tracks.c +++ b/tracks.c @@ -2629,7 +2629,8 @@ static void draw_thick_circle_outline(drawing *dr, float thickness, x2 = cx + r*(float)cos(th2); y1 = cy + r*(float)sin(th); y2 = cy + r*(float)sin(th2); - debug(("circ outline: x=%.2f -> %.2f, thick=%.2f", x1, x2, thickness)); + debug(("circ outline: x=%.2f -> %.2f, thick=%.2f\n", + x1, x2, thickness)); draw_thick_line(dr, thickness, x1, y1, x2, y2, colour); } }