diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-05-03 03:58:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-05-03 03:58:50 +0000 |
commit | 3b98360a902ae1d5b3b0ab40d8fd1c9f780360f0 (patch) | |
tree | 1057572a6394a04de64ff86d5a2425f45baa28f1 /sink.c | |
parent | a00e041d49a230e41877e0207dbab269bd67fa2d (diff) | |
download | fetchmail-3b98360a902ae1d5b3b0ab40d8fd1c9f780360f0.tar.gz fetchmail-3b98360a902ae1d5b3b0ab40d8fd1c9f780360f0.tar.bz2 fetchmail-3b98360a902ae1d5b3b0ab40d8fd1c9f780360f0.zip |
Cast sprintf args in sink.c to expected types (to avoid problems on
systems where pid_t is not int) (John Bley <jbb6@acpub.duke.edu>)
svn path=/trunk/; revision=2465
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -282,7 +282,7 @@ static int send_bouncemail(struct query *ctl, struct msgblk *msg, sprintf(boundary, "om-mani-padme-hum-%d-%d-%ld", - getpid(), getppid(), time((time_t *)NULL)); + (int)getpid(), (int)getppid(), time((time_t *)NULL)); ts = rfc822timestamp(); |