Hi, > - if((ev->window == root) && (ev->atom = XA_WM_NAME)) > + if((ev->window == root) && (ev->atom == XA_WM_NAME))
Why not remove the inner parens as well? Without them, gcc would have noticed. Regards, Peter
Hi, > - if((ev->window == root) && (ev->atom = XA_WM_NAME)) > + if((ev->window == root) && (ev->atom == XA_WM_NAME))
Why not remove the inner parens as well? Without them, gcc would have noticed. Regards, Peter