tweaks: remove an unwanted newline from a debugging message

This commit is contained in:
Benno Schulenberg 2025-03-06 12:19:29 +01:00
parent 38c8845b05
commit 9c6a62d319

View File

@ -304,7 +304,7 @@ void read_keys_from(WINDOW *frame)
nodelay(frame, FALSE);
#ifdef DEBUG
fprintf(stderr, "\nSequence of hex codes:");
fprintf(stderr, "Sequence of hex codes:");
for (size_t i = 0; i < waiting_codes; i++)
fprintf(stderr, " %3x", key_buffer[i]);
fprintf(stderr, "\n");