about summary refs log tree commit diff stats
path: root/drw.c
diff options
context:
space:
mode:
authorexplosion-mental <explosion0mental@gmail.com>2022-07-29 18:26:04 -0500
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-08-02 18:08:51 +0200
commit5b2e5e7a4001479e4dc3e245f96e49f7ea0da658 (patch)
treeae9e4550e77d11241f92847f4828aedcdb02774a /drw.c
parent786f6e2a6f8466ad94706781bc93bc6eb6e69512 (diff)
downloaddwm-5b2e5e7a4001479e4dc3e245f96e49f7ea0da658.tar.gz
spawn: reduce 2 lines, change fprintf() + perror() + exit() to die("... :")
when calling die and the last character of the string corresponds to
':', die() will call perror(). See util.c

Also change EXIT_SUCCESS to EXIT_FAILURE
Diffstat (limited to 'drw.c')
0 files changed, 0 insertions, 0 deletions
ose/postpone.go?id=76a91813d8dc0f0011202f8120fc197097f022aa'>^
7f03327 ^






caad1b2 ^
7f03327 ^






3102ac3 ^
7f03327 ^





76a9181 ^
7f03327 ^


caad1b2 ^
7f03327 ^

























1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119