]> granicus.if.org Git - neomutt/commitdiff
In debug output, cast size_t arguments to long for consistency with
authorMatthias Andree <matthias.andree@gmx.de>
Sun, 11 May 2008 08:52:43 +0000 (10:52 +0200)
committerMatthias Andree <matthias.andree@gmx.de>
Sun, 11 May 2008 08:52:43 +0000 (10:52 +0200)
printf %ld argument.

rfc3676.c

index 2bfbb60fea3604da77616d9a6f6825da1203924f..4de8ba7c09502c29e8441c2ada07cf8819fba905 100644 (file)
--- a/rfc3676.c
+++ b/rfc3676.c
@@ -101,16 +101,16 @@ static void print_flowed_line (char *line, STATE *s, int ql, size_t *sofar, int
 
   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;
     }