On Tue, Dec 1, 2015 at 6:11 PM, Bryan Drewery <bdrew...@freebsd.org> wrote:

> -               (void) snprintf(buf, size, "%#lx", addr);
> +               (void) snprintf(buf, size, "%#lx", (unsigned long)addr);
>                 return (0);
>

In the past when I've hit these types of problems,
I have found that using %#jx and casting to (uintmax_t) instead seemed to
work
consistently across different platforms, so you might want to do that here.
There are lots of examples in the tree of this pattern.

--
Craig
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to