Created attachment 160113 [details] Fix devel/libpru printf format errors with clang 3.7.0 During the exp-run in bug 201377, it was found that devel/libpru gives errors with a recent clang 3.7.0 snapshot: http://package18.nyi.freebsd.org/data/headi386PR201377-default/2015-07-31_12h04m22s/logs/errors/libpru-0.2.log This is because the port compiles with -Weverything -Werror, and attempts to print various pointers which are not void * using the %p format. This can be fixed by casting the pointers to void *.
A commit references this bug: Author: rpaulo Date: Wed Aug 19 22:29:27 UTC 2015 New revision: 394817 URL: https://svnweb.freebsd.org/changeset/ports/394817 Log: Update libpru to 0.4. This fixes compilation with Clang 3.7. PR: 202495 Changes: head/devel/libpru/Makefile head/devel/libpru/distinfo
This change was committed by rpaulo a week ago, thanks for your submission!