]> diplodocus.org Git - nmh/commitdiff
mhparse.c: Cast ptrdiff_t from subtraction to long.
authorRalph Corderoy <ralph@inputplus.co.uk>
Fri, 11 Aug 2017 14:34:41 +0000 (15:34 +0100)
committerRalph Corderoy <ralph@inputplus.co.uk>
Fri, 11 Aug 2017 14:34:41 +0000 (15:34 +0100)
Cygwin's 32-bit doesn't like `%ld' for the `p - q' difference between
two pointers as the value is an int, not a long.  printf(3)'s `t' length
modifier, for ptrdiff_t, can't be used as that's C99, and we're C90.
Cast the difference to a long explicitly instead.


No differences found