aboutsummaryrefslogtreecommitdiffstats
path: root/src/xlib.c
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2013-12-28 15:21:06 -0800
committerJohn Hawthorn <john.hawthorn@gmail.com>2013-12-28 15:21:06 -0800
commit6040b2ef005a427190a6173427a08b38e41697b6 (patch)
tree45b9ebbab7825d4bb4b4cdbc31aabad4d74bd122 /src/xlib.c
parent79bb6f0c99ceeeff529f07101edd47747d7b8e45 (diff)
parentca40c3725d622270640b3121642cb5febc4e0e87 (diff)
downloadmirror-meh-6040b2ef005a427190a6173427a08b38e41697b6.tar.gz
mirror-meh-6040b2ef005a427190a6173427a08b38e41697b6.tar.bz2
mirror-meh-6040b2ef005a427190a6173427a08b38e41697b6.zip
Merge pull request #7 from rtandy/for-hawth
a few patches
Diffstat (limited to 'src/xlib.c')
-rw-r--r--src/xlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xlib.c b/src/xlib.c
index fc6895d..2912321 100644
--- a/src/xlib.c
+++ b/src/xlib.c
@@ -173,8 +173,8 @@ static int xquit(Display *d){
void backend_init(){
display = XOpenDisplay (NULL);
- xfd = ConnectionNumber(display);
assert(display);
+ xfd = ConnectionNumber(display);
screen = DefaultScreen(display);
window = XCreateWindow(display, DefaultRootWindow(display), 0, 0, 640, 480, 0, DefaultDepth(display, screen), InputOutput, CopyFromParent, 0, NULL);