Compare commits

..

No commits in common. "17555f86d19a02799ac1140d64a37e8fd26e74fd" and "b774677b0a052499323f8b7fc4a2a890f3586eec" have entirely different histories.

2 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,7 @@ static const Rule rules[] = {
* WM_CLASS(STRING) = instance, class * WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title * WM_NAME(STRING) = title
*/ */
/* class instance title tags mask isfloating monitor */
/* class instance title tags mask isfloating isterminal noswallow monitor */ /* class instance title tags mask isfloating isterminal noswallow monitor */
{"Virt-viewer", NULL, NULL, 1 << 8, 0, 0, 0, -1}, {"Virt-viewer", NULL, NULL, 1 << 8, 0, 0, 0, -1},

1
drw.c
View File

@ -95,7 +95,6 @@ drw_free(Drw *drw)
{ {
XFreePixmap(drw->dpy, drw->drawable); XFreePixmap(drw->dpy, drw->drawable);
XFreeGC(drw->dpy, drw->gc); XFreeGC(drw->dpy, drw->gc);
drw_fontset_free(drw->fonts);
free(drw); free(drw);
} }