X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=draw.c;h=80a50743cad683237b2ffa8b27891395ea9cce41;hb=210b303941e517a9d7df1cba1e3229165fb4037b;hp=28c658c28d2849dad01f23690c390ab93012feb1;hpb=47e3e8be7b7df3ed37929dab8941f71cbee19fa9;p=dmenu.git diff --git a/draw.c b/draw.c index 28c658c..80a5074 100644 --- a/draw.c +++ b/draw.c @@ -100,16 +100,13 @@ initdc(void) { if(!setlocale(LC_CTYPE, "") || !XSupportsLocale()) weprintf("no locale support\n"); - if(!(dc = malloc(sizeof *dc))) + if(!(dc = calloc(1, sizeof *dc))) eprintf("cannot malloc %u bytes\n", sizeof *dc); if(!(dc->dpy = XOpenDisplay(NULL))) eprintf("cannot open display\n"); dc->gc = XCreateGC(dc->dpy, DefaultRootWindow(dc->dpy), 0, NULL); XSetLineAttributes(dc->dpy, dc->gc, 1, LineSolid, CapButt, JoinMiter); - dc->font.xfont = NULL; - dc->font.set = NULL; - dc->canvas = None; return dc; } @@ -187,7 +184,7 @@ void weprintf(const char *fmt, ...) { va_list ap; - fprintf(stderr, "%s: warning: ", progname); + fprintf(stderr, "%s: ", progname); va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap);