Signed-off-by: Adam Jackson <[email protected]>
---
 src/XlibInt.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/XlibInt.c b/src/XlibInt.c
index 4c8eaeb..d5946bd 100644
--- a/src/XlibInt.c
+++ b/src/XlibInt.c
@@ -1242,24 +1242,24 @@ int _XDefaultIOError(
        Display *dpy)
 {
        if (ECHECK(EPIPE)) {
-           (void) fprintf (stderr,
-       "X connection to %s broken (explicit kill or server shutdown).\r\n",
-                           DisplayString (dpy));
+           fprintf (stderr,
+                     "X connection to %s broken (explicit kill or server 
shutdown).\r\n",
+                     DisplayString (dpy));
        } else {
-           (void) fprintf (stderr,
-                       "XIO:  fatal IO error %d (%s) on X server \"%s\"\r\n",
+            fprintf (stderr,
+                     "XIO:  fatal IO error %d (%s) on X server \"%s\"\r\n",
 #ifdef WIN32
-                       WSAGetLastError(), strerror(WSAGetLastError()),
+                      WSAGetLastError(), strerror(WSAGetLastError()),
 #else
-                       errno, strerror (errno),
+                      errno, strerror (errno),
 #endif
-                       DisplayString (dpy));
-           (void) fprintf (stderr,
-        "      after %lu requests (%lu known processed) with %d events 
remaining.\r\n",
-                       NextRequest(dpy) - 1, LastKnownRequestProcessed(dpy),
-                       QLength(dpy));
+                      DisplayString (dpy));
+           fprintf (stderr,
+                    "      after %lu requests (%lu known processed) with %d 
events remaining.\r\n",
+                    NextRequest(dpy) - 1, LastKnownRequestProcessed(dpy),
+                    QLength(dpy));
+        }
 
-       }
        exit(1);
        /*NOTREACHED*/
 }
-- 
2.9.3

_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: https://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to