about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-15 19:01:57 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-15 19:01:57 +0100
commit3b18f17d4d4f2d7502f52346cbd158b7120fd835 (patch)
tree82ee626ed3e990a917cd6d05a4b108b1c7903a2f
parent72faa1919e34ffeebb1ca35ae8c2c24b700dcf66 (diff)
downloaddwm-3b18f17d4d4f2d7502f52346cbd158b7120fd835.tar.gz
Jukka, thanks for being faster than me!
-rw-r--r--event.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/event.c b/event.c
index a809511..75c3fa0 100644
--- a/event.c
+++ b/event.c
@@ -240,7 +240,6 @@ enternotify(XEvent *e) {
 
 static void
 expose(XEvent *e) {
-	Client *c;
 	XExposeEvent *ev = &e->xexpose;
 
 	if(ev->count == 0) {
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234