aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2009-05-14 00:18:05 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2009-05-14 00:18:05 +0200
commit86fa756033e9072a4b114a50896baff36b804ce4 (patch)
tree9d6e9b5303f4547a06bc040e46b67070c1682fb4 /st.c
parentccafacb3ff22c85516ff46a88275097936dfe442 (diff)
downloadst-86fa756033e9072a4b114a50896baff36b804ce4.tar.zst
same thing, really fixed this time.
Diffstat (limited to 'st.c')
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index 1f58569..2318435 100644
--- 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, "");