From 3720e96ca5ae94f838a7fc39fe1f1d559961a3a4 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 8 Aug 2018 15:39:07 -0400 Subject: [PATCH] Get rid of extra ;. --- src/x11.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x11.cc b/src/x11.cc index e52f3c1a..2a2169d1 100644 --- a/src/x11.cc +++ b/src/x11.cc @@ -273,7 +273,7 @@ std::pair window_hints_traits::convert( if (newpos > pos) { l.pushstring(hints.substr(pos, newpos - pos)); auto t = conky::lua_traits::convert(l, -1, name); - if (!t.second) { return {0, false}; }; + if (!t.second) { return {0, false}; } SET_HINT(ret, t.first); l.pop(); }