JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
same thing, really fixed this time.
authorAurélien Aptel <aurelien.aptel@gmail.com>
Wed, 13 May 2009 22:18:05 +0000 (00:18 +0200)
committerAurélien Aptel <aurelien.aptel@gmail.com>
Wed, 13 May 2009 22:18:05 +0000 (00:18 +0200)
st.c

diff --git a/st.c b/st.c
index 1f58569..2318435 100644 (file)
--- a/st.c
+++ b/st.c
@@ -703,7 +703,7 @@ xinit(void) {
 
        xw.dis = XOpenDisplay(NULL);
        xw.scr = XDefaultScreen(xw.dis);
-    if(!(xw.dis && xw.scr))
+    if(!xw.dis)
         die("can not open display");
     
        /* font */
@@ -916,7 +916,7 @@ run(void) {
 int
 main(int argc, char *argv[]) {
        if(argc == 2 && !strncmp("-v", argv[1], 3))
-               die("st-"", © 2009 st engineers\n");
+               die("st-" VERSION ", © 2009 st engineers\n");
        else if(argc != 1)
                die("usage: st [-v]\n");
        setlocale(LC_CTYPE, "");