1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

Get rid of extra ;.

This commit is contained in:
Brenden Matthews 2018-08-08 15:39:07 -04:00
parent 7220ef4c80
commit 3720e96ca5

View File

@ -273,7 +273,7 @@ std::pair<uint16_t, bool> window_hints_traits::convert(
if (newpos > pos) {
l.pushstring(hints.substr(pos, newpos - pos));
auto t = conky::lua_traits<window_hints>::convert(l, -1, name);
if (!t.second) { return {0, false}; };
if (!t.second) { return {0, false}; }
SET_HINT(ret, t.first);
l.pop();
}