summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-09-01 15:58:40 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-09-01 15:58:40 +0000
commit2a575a970197b530377f266bf02e5b970008e421 (patch)
tree3949ab4e23b758d8aca8707bb66484609d742364 /sendlib.c
parent348ec01dd1462df2b707027b65e39b78b3dd0e10 (diff)
Fix a couple of possible compilation warnings. (Noted by "John C.
Place" <placej@ctcdist.com>.)
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendlib.c b/sendlib.c
index af530c2b..f407757c 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -1174,7 +1174,7 @@ char *mutt_make_date (char *s, size_t len)
snprintf (s, len, "Date: %s, %d %s %d %02d:%02d:%02d %+03d%02d\n",
Weekdays[l->tm_wday], l->tm_mday, Months[l->tm_mon],
l->tm_year + 1900, l->tm_hour, l->tm_min, l->tm_sec,
- tz / 60, abs (tz) % 60);
+ (int) tz / 60, (int) abs (tz) % 60);
return (s);
}