In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ace3ad0f8709a7fde3c8e2a6249bb3f3fb7c7b16?hp=4fe487375733a521d44d835d6c9894bd30c6e26a>
- Log ----------------------------------------------------------------- commit ace3ad0f8709a7fde3c8e2a6249bb3f3fb7c7b16 Author: Karl Williamson <[email protected]> Date: Fri Jul 29 13:15:57 2016 -0600 handy.h: Add missing parens in macro These should have been in the recent commit 6c5b02ac7a9ff1c91f2ca46bedd89ba9012bb34f ----------------------------------------------------------------------- Summary of changes: handy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handy.h b/handy.h index b7cd9f5..dabe0cd 100644 --- a/handy.h +++ b/handy.h @@ -913,7 +913,7 @@ patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc /* The '| 0' part ensures a compiler error if c is not integer (like e.g., a * pointer) */ #define FITS_IN_8_BITS(c) ( (sizeof(c) == 1) \ - || !(((WIDEST_UTYPE)(c | 0)) & ~0xFF)) + || !(((WIDEST_UTYPE)((c) | 0)) & ~0xFF)) #else #define FITS_IN_8_BITS(c) (1) #endif -- Perl5 Master Repository
