X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fmf.c;h=fd92e369590b799d4785eb16fc13e5587cc900ea;hp=2559b678dbd18e6e3d2e786385d55d67c0658a0c;hb=5dd6771b28c257af405d7248639ed0e3bcdce38b;hpb=13f84dd50ca5754391dbd3296a5c7425f9363600 diff --git a/sbr/mf.c b/sbr/mf.c index 2559b67..fd92e36 100644 --- a/sbr/mf.c +++ b/sbr/mf.c @@ -2,8 +2,6 @@ /* * mf.c -- mail filter subroutines * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -421,7 +419,7 @@ getadrx (char *addrs) while (isspace (*ap)) ap++; if (cp) - sprintf (adr, "%.*s", cp - ap, ap); + sprintf (adr, "%.*s", (int)(cp - ap), ap); else strcpy (adr, ap); bp = adr + strlen (adr) - 1;