[openssl-dev] [openssl.org #4347] Fix GCC unused-value warnings with HOST_c2l()

2016-03-01 Thread Rich Salz via RT
fixed with commit 09977dd thanks! -- Rich Salz, OpenSSL dev team; rs...@openssl.org -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4347 Please log in as guest with password guest if prompted -- openssl-dev mailing list To unsubscribe:

[openssl-dev] [openssl.org #4347] Fix GCC unused-value warnings with HOST_c2l()

2016-02-25 Thread David Woodhouse via RT
The HOST_c2l() macro assigns the value to the specified variable, but also evaluates to the same value. Which we ignore, triggering a warning. To fix this, just cast it to void — like we did in commit 08e553644 ("Fix some clang warnings.") for a bunch of other instances. ---