fix compiler warnings
This commit is contained in:
parent
a73d02c6a8
commit
0732a19af2
10
xcompmgr.c
10
xcompmgr.c
|
@ -1176,7 +1176,6 @@ repair_win(Display *dpy, win *w) {
|
||||||
set_ignore(dpy, NextRequest(dpy));
|
set_ignore(dpy, NextRequest(dpy));
|
||||||
XDamageSubtract(dpy, w->damage, None, None);
|
XDamageSubtract(dpy, w->damage, None, None);
|
||||||
} else {
|
} else {
|
||||||
XserverRegion o;
|
|
||||||
parts = XFixesCreateRegion(dpy, 0, 0);
|
parts = XFixesCreateRegion(dpy, 0, 0);
|
||||||
set_ignore(dpy, NextRequest(dpy));
|
set_ignore(dpy, NextRequest(dpy));
|
||||||
XDamageSubtract(dpy, w->damage, None, parts);
|
XDamageSubtract(dpy, w->damage, None, parts);
|
||||||
|
@ -1189,6 +1188,7 @@ repair_win(Display *dpy, win *w) {
|
||||||
w->damaged = 1;
|
w->damaged = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
static const char*
|
static const char*
|
||||||
wintype_name(wintype type) {
|
wintype_name(wintype type) {
|
||||||
const char *t;
|
const char *t;
|
||||||
|
@ -1243,6 +1243,7 @@ wintype_name(wintype type) {
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static wintype
|
static wintype
|
||||||
get_wintype_prop(Display * dpy, Window w) {
|
get_wintype_prop(Display * dpy, Window w) {
|
||||||
|
@ -1905,11 +1906,12 @@ error(Display *dpy, XErrorEvent *ev) {
|
||||||
case BadGlyph:
|
case BadGlyph:
|
||||||
name ="BadGlyph";
|
name ="BadGlyph";
|
||||||
break;
|
break;
|
||||||
default: break;
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("error %d request %d minor %d serial %lu\n",
|
printf("error %d (%s) request %d minor %d serial %lu\n",
|
||||||
ev->error_code, ev->request_code,
|
ev->error_code, name, ev->request_code,
|
||||||
ev->minor_code, ev->serial);
|
ev->minor_code, ev->serial);
|
||||||
|
|
||||||
/* abort(); this is just annoying to most people */
|
/* abort(); this is just annoying to most people */
|
||||||
|
|
Loading…
Reference in New Issue