summaryrefslogtreecommitdiffstats
path: root/forward.c
diff options
context:
space:
mode:
authorManuel Mausz <manuel@mausz.at>2019-06-11 15:28:27 +0200
committermanuel <manuel@mausz.at>2019-06-11 15:29:11 +0200
commit692760720b197b46e8e4268bede8cad6f90399aa (patch)
tree0d0d5f45759b83e15d6668357f9482dca236880b /forward.c
parent54bb1142daa7c25f626176bb9357e1fc7ca75fbb (diff)
downloadqmail-692760720b197b46e8e4268bede8cad6f90399aa.tar.gz
qmail-692760720b197b46e8e4268bede8cad6f90399aa.tar.bz2
qmail-692760720b197b46e8e4268bede8cad6f90399aa.zip
Fix compile warnings...
Diffstat (limited to 'forward.c')
-rw-r--r--forward.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/forward.c b/forward.c
index e7390aa..6cf0252 100644
--- a/forward.c
+++ b/forward.c
@@ -1,5 +1,5 @@
1#include <unistd.h>
1#include "sig.h" 2#include "sig.h"
2#include "readwrite.h"
3#include "exit.h" 3#include "exit.h"
4#include "env.h" 4#include "env.h"
5#include "qmail.h" 5#include "qmail.h"
@@ -13,7 +13,7 @@ void die_nomem() { strerr_die2x(111,FATAL,"out of memory"); }
13 13
14struct qmail qqt; 14struct qmail qqt;
15 15
16int mywrite(fd,buf,len) int fd; char *buf; int len; 16ssize_t mywrite(fd,buf,len) int fd; char *buf; int len;
17{ 17{
18 qmail_put(&qqt,buf,len); 18 qmail_put(&qqt,buf,len);
19 return len; 19 return len;