[dovecot-cvs] dovecot/src/lib-storage mail.c,1.2,1.3

cras at dovecot.org cras at dovecot.org
Tue Apr 12 14:29:50 EEST 2005


Update of /var/lib/cvs/dovecot/src/lib-storage
In directory talvi:/tmp/cvs-serv7650/lib-storage

Modified Files:
	mail.c 
Log Message:
Don't return void.



Index: mail.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/mail.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mail.c	29 Mar 2005 16:48:42 -0000	1.2
+++ mail.c	12 Apr 2005 11:29:48 -0000	1.3
@@ -15,7 +15,7 @@
 {
 	struct mail_private *p = (struct mail_private *)mail;
 
-	return p->v.free(mail);
+	p->v.free(mail);
 }
 
 int mail_set_seq(struct mail *mail, uint32_t seq)



More information about the dovecot-cvs mailing list