summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-10-25 18:52:41 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2009-10-25 18:52:41 +0200
commit4f36463dfe2d17b2932a656fffee9aeb7832abe4 (patch)
tree5753700afe4a98bf23cd35ff2a423fe0b11ac398 /python
parentf0cc7bda9699c31f2c478928f78b16876db2fa25 (diff)
downloadmailutils-4f36463dfe2d17b2932a656fffee9aeb7832abe4.tar.gz
mailutils-4f36463dfe2d17b2932a656fffee9aeb7832abe4.tar.bz2
Variois fixes (mostly to placate gcc)
* examples/base64.c, examples/mta.c, imap4d/auth_gss.c, imap4d/imap4d.c, imap4d/preauth.c, libmu_auth/ldap.c, libmu_auth/virtual.c, libmu_scm/mu_body.c, libmu_scm/mu_port.c, libproto/mailer/smtp.c, mailbox/acl.c, mailbox/secret.c, pop3d/pop3d.c, python/libmu_py/address.c, sql/odbc.c: Fix argument signedness. * imap4d/fetch.c, imap4d/store.c (closures): Change type of `count' to int, to match the signature of util_msgset. * include/mailutils/guile.h (mu_scm_message_get): Fix return type (const is useless here). * libmu_scm/mu_message.c (mu_scm_message_get): Likewise. (scm_mu_message_copy): Fix type of the `wr' automatic variable. * libmu_scm/mu_mime.c (mu_scm_mime_get): Remove const qualifier from the return type. * libmu_argp/cmdline.c: Include stdlib.h.
Diffstat (limited to 'python')
-rw-r--r--python/libmu_py/address.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/libmu_py/address.c b/python/libmu_py/address.c
index 1633d23ef..ebba61f0d 100644
--- a/python/libmu_py/address.c
+++ b/python/libmu_py/address.c
@@ -269,7 +269,8 @@ api_address_get_route (PyObject *self, PyObject *args)
static PyObject *
api_address_to_string (PyObject *self, PyObject *args)
{
- int status, n;
+ int status;
+ size_t n;
char buf[256];
PyAddress *py_addr;

Return to:

Send suggestions and report system problems to the System administrator.