width = quote_width (s, ql);
- dprint (4, (debugfile, "f-f: line [%s], width = %ld\n", NONULL(line), width));
+ dprint (4, (debugfile, "f-f: line [%s], width = %ld\n", NONULL(line), (long)width));
for (p = (char *)line, words = 0; (p = strsep (&line, " ")) != NULL ; )
{
w = mutt_strwidth (NONULL(p));
- dprint (4, (debugfile, "f-f: word [%s], width = %ld, line = %ld\n", NONULL(p), w, *sofar));
+ dprint (4, (debugfile, "f-f: word [%s], width = %ld, line = %ld\n", NONULL(p), (long)w, (long)*sofar));
if (w + 1 + (*sofar) > width)
{
/* line would be too long, flush */
- dprint (4, (debugfile, "f-f: width: %ld\n", *sofar));
+ dprint (4, (debugfile, "f-f: width: %ld\n", (long)*sofar));
state_puts (" \n", s);
*sofar = 0;
}