> Is there any time that the value of HOST_cl2 is used? Could we just > add the (void) cast to the macro definition?
It's not only about whether or not it's actually used, but even question of style. Macros are *preferred* to be expressions so that they can be used as part of other expression. What I'm saying is that while void-ing macro does solve this particular problem, it would be kind of "cowardly" way out. The correct solution is to remove ',l' as was also suggested. This way compiler doesn't complain and macro is still compliant with style guidelines. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
