Re: [exim-dev] ulong in exim_monitor/em_menu.c

2020-09-12 Thread Jeremy Harris via Exim-dev
On 12/09/2020 19:47, Richard Clayton via Exim-dev wrote: > in exim_monitor/em_menu.c > > 635 text_showf(text, "Format error in spool file %s: size=%lu\n", > buffer, > 636 (ulong)statbuf.st_size); > > sadly, when I compile with clang on FreeBSD "ulong" does not exist Thanks for

[exim-dev] ulong in exim_monitor/em_menu.c

2020-09-12 Thread Richard Clayton via Exim-dev
in exim_monitor/em_menu.c 635 text_showf(text, "Format error in spool file %s: size=%lu\n", buffer, 636 (ulong)statbuf.st_size); sadly, when I compile with clang on FreeBSD "ulong" does not exist changing ulong to unsigned long makes my compiler happy, I cannot speak for