From 75d55b66a708b10e02f8d5b9e81baa459f7f609f Mon Sep 17 00:00:00 2001 Message-Id: <75d55b66a708b10e02f8d5b9e81baa459f7f609f.1715136703.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 24 Apr 2022 12:14:27 +0100 Subject: [PATCH] xrepaint.c: Close the display explicitly at the end. Organization: Straylight/Edgeware From: Mark Wooding Just to make sure everything's properly flushed. --- xrepaint.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xrepaint.c b/xrepaint.c index 166e238..5a454a8 100644 --- a/xrepaint.c +++ b/xrepaint.c @@ -152,6 +152,7 @@ int main(int argc, char *argv[]) select(0, 0, 0, 0, &tv); /* All done. */ + XCloseDisplay(dpy); return (0); } -- [mdw]