walter harms <[email protected]> writes: > hi List, > i got some warnings about "strict anti-aliasing". It was easy to fix and > should not > break other things. > > --- Colorset.c~ 2008-02-05 22:04:47.000000000 +0100 > +++ Colorset.c 2013-12-22 21:54:48.000000000 +0100 > @@ -233,12 +233,13 @@ > { > Pixmap pixmap = None; > Pixmap mask = None; > - XID junk; > + int junk; > + XID root;
Hi, How did you get the warning? I don't get one with "-Wall -Werror". I like clean looking compiles, but this one actually adds 4 unnecessary bytes to the stack. I know that's very minor but it goes against my grain. I'm guessing this could be fixed with a union too which would eliminate the 4 bytes. But I hesitate to do anything without seeing the messages first. -- Dan Espen
