CC     wcmValidateDevice.lo
../../src/wcmValidateDevice.c: In function ‘wcmParseOptions’:
../../src/wcmValidateDevice.c:386: warning: ‘and’ of mutually
exclusive equal-tests is always 0

s = xf86SetStrOption(local->options, "PressCurve", NULL);
        if (s && IsStylus(priv) && IsEraser(priv))

shouldn't this be:
        if ((s && isStylus(priv)) || (s && IsEraser(priv)))

Although I may not have understood what the correct logic should be here.

-- 
Bryan Hundven
bryanhund...@gmail.com

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Linuxwacom-devel mailing list
Linuxwacom-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel

Reply via email to