]> jfr.im git - irc/evilnet/x3.git/blobdiff - src/sendmail.c
Finally i figured out how to deal with the last issue, This is a tracking module...
[irc/evilnet/x3.git] / src / sendmail.c
index 8c211e7e6fd9ea01163e3ff5860a8de74fc0a7f8..755d66a00624fc7fed17255cd5f82bad639b1f08 100644 (file)
@@ -85,7 +85,7 @@ send_flowed_text(FILE *where, const char *para)
             break;
         } else if (eol && (eol < para + (80 - shift))) {
             /* Newline inside paragraph, no need to wrap. */
-            fprintf(where, "%.*s\n", eol - para, para);
+            fprintf(where, "%.*s\n", (int)(eol - para), para);
             para = eol + 1;
         } else {
             int pos;