diff options
author | José Fonseca <jrfonseca@users.sourceforge.net> | 2003-10-17 22:35:47 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@users.sourceforge.net> | 2003-10-17 22:35:47 +0000 |
commit | aa961687f2c4862bc6430b386015373b4eae2043 (patch) | |
tree | 19ffe7d134fb326c78a1b09ab265fe9a005d76c7 | |
parent | f8f226f65276f1c645eff2d6edb48c8d6caf2256 (diff) |
Fix compiler warning. (Daniel Richard G.)
-rw-r--r-- | smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -137,7 +137,7 @@ static const char * message_cb (void **buf, int *len, void *arg) /* only allow rewinding in the beginning of a message otherwise * it will break the pipes */ assert(*buf == NULL); - return; + return NULL; } if (*buf == NULL) |