From 0a0fdc709914129eefab9bba0541a74435cf0466 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 27 Jun 1996 00:25:07 +0000 Subject: [PATCH] (x_error_quitter): Delete newline from sprintf string. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 977e1b8020f..4dfaece68b2 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4555,7 +4555,7 @@ x_error_quitter (display, error) original error handler. */ XGetErrorText (display, error->error_code, buf, sizeof (buf)); - sprintf (buf1, "X protocol error: %s on protocol request %d\n", + sprintf (buf1, "X protocol error: %s on protocol request %d", buf, error->request_code); x_connection_closed (display, buf1); } -- 2.39.2