Systray: Replace zcalloc with xcalloc (potential bug)

This commit is contained in:
Martin Duquesnoy 2011-01-17 20:19:25 +01:00
parent c8c210bcac
commit 7e0436ffdc

View File

@ -85,7 +85,7 @@ systray_add(Window win)
if(!conf.systray.active)
return;
s = zcalloc(sizeof(Systray));
s = xcalloc(1, sizeof(Systray));
s->win = win;
s->geo.height = infobar[conf.systray.screen].bar->geo.height;