more style nits

This commit is contained in:
okan
2014-09-07 19:27:30 +00:00
parent be091b3523
commit 3d12b6d1d9
8 changed files with 67 additions and 67 deletions

View File

@@ -83,12 +83,12 @@ screen_find(Window win)
{
struct screen_ctx *sc;
TAILQ_FOREACH(sc, &Screenq, entry)
TAILQ_FOREACH(sc, &Screenq, entry) {
if (sc->rootwin == win)
return (sc);
return(sc);
}
/* XXX FAIL HERE */
return (TAILQ_FIRST(&Screenq));
return(TAILQ_FIRST(&Screenq));
}
void
@@ -133,7 +133,7 @@ screen_find_xinerama(struct screen_ctx *sc, int x, int y, int flags)
geom.w -= (sc->gap.left + sc->gap.right);
geom.h -= (sc->gap.top + sc->gap.bottom);
}
return (geom);
return(geom);
}
void