From: Ralph Corderoy Date: Fri, 25 Aug 2017 21:36:01 +0000 (+0100) Subject: Print pointers in debug with C99's `%p' rather than `0x%x'. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/e605596f06f250775f89ddfe3f7f2c8fcfda1c4e?ds=sidebyside;hp=e605596f06f250775f89ddfe3f7f2c8fcfda1c4e Print pointers in debug with C99's `%p' rather than `0x%x'. The `%x' needed a double cast, the `%p' needs just a single to void pointer. The output can differ, e.g. `0x0' v. perhaps implementation-defined `(nil)'. ---