about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorPremysl Hruby <dfenze@gmail.com>2009-02-12 17:26:12 +0100
committerPremysl Hruby <dfenze@gmail.com>2009-02-12 17:26:12 +0100
commitbf9da23f07249cfe8f5a5a5c4256d919b353b10c (patch)
tree4f4fb46ced5e865dd1a601c2dec85f8081a1c057 /dwm.c
parent23739402150fd182244f36b58de4749a3fa4265c (diff)
downloaddwm-bf9da23f07249cfe8f5a5a5c4256d919b353b10c.tar.gz
fix of typo, thx to Enno Gottox Boland
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index db9e9c0..cfe1e7b 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1015,7 +1015,7 @@ propertynotify(XEvent *e) {
 	Window trans;
 	XPropertyEvent *ev = &e->xproperty;
 
-	if((ev->window == root) && (ev->atom = XA_WM_NAME))
+	if((ev->window == root) && (ev->atom == XA_WM_NAME))
 		updatestatus();
 	else if(ev->state == PropertyDelete)
 		return; /* ignore */
'n150' href='#n150'>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