From 7fdc728ec499dca2c592e3ce884b286d69e5e869 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 20 Mar 2020 15:43:32 -0400 Subject: [PATCH] FIX remove stray def --- lib/DBus/Common.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DBus/Common.hs b/lib/DBus/Common.hs index 382d264..c44196a 100644 --- a/lib/DBus/Common.hs +++ b/lib/DBus/Common.hs @@ -21,7 +21,7 @@ startXMonadService = do stopXMonadService :: Client -> IO () stopXMonadService client = do - reply <- releaseName client "org.xmonad" + _ <- releaseName client "org.xmonad" disconnect client return ()