1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-30 12:15:50 +01:00

fixed some signal handling bugs

This commit is contained in:
kojima
2001-03-14 02:54:54 +00:00
parent b85df20ba2
commit 51b1bf34b9
11 changed files with 192 additions and 108 deletions

View File

@@ -516,13 +516,13 @@ loadPixmaps(WMScreen *scr)
WMScreen*
WMOpenScreen()
WMOpenScreen(const char *display)
{
Display *dpy = XOpenDisplay("");
Display *dpy = XOpenDisplay(display);
if (!dpy) {
wwarning("WINGs: could not open display %s",
XDisplayName(""));
XDisplayName(display));
return NULL;
}