URI: 
       tiny code-style tweak - svkbd - simple virtual keyboard
  HTML git clone git://git.suckless.org/svkbd
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 2ef13088e4cf1d7f43c26df590c962a37e7a3245
   DIR parent 9620b1d8c281b80940432a396a928108f0051043
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Mon, 24 Aug 2020 19:32:47 +0200
       
       tiny code-style tweak
       
       Diffstat:
         M drw.c                               |       5 +++--
         M drw.h                               |       1 -
       
       2 files changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/drw.c b/drw.c
       @@ -389,8 +389,9 @@ drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h)
        }
        
        void
       -drw_sync(Drw *drw) {
       -    XSync(drw->dpy, False);
       +drw_sync(Drw *drw)
       +{
       +        XSync(drw->dpy, False);
        }
        
        unsigned int
   DIR diff --git a/drw.h b/drw.h
       @@ -37,7 +37,6 @@ void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned in
        void drw_clr_create(Drw *drw, Clr *dest, const char *clrname);
        Clr *drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount);
        
       -
        /* Drawing context manipulation */
        void drw_setfontset(Drw *drw, Fnt *set);
        void drw_setscheme(Drw *drw, Clr *scm);