From f507edf2917fd39ba7d66eea0ff9b16c8d5ffa56 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 22 Oct 2003 22:59:07 +0000 Subject: some const fixes git-svn-id: file:///home/lennart/svn/public/libnewmail/trunk@31 2d4e79f2-dfba-0310-a9f4-9628e67fcdf4 --- src/nmail-async.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nmail-async.c') diff --git a/src/nmail-async.c b/src/nmail-async.c index 06f4d09..c32896d 100644 --- a/src/nmail-async.c +++ b/src/nmail-async.c @@ -58,7 +58,7 @@ void finish(void) { } /* A callback function which is called whenever a mail spool query finished */ -void cb_check(struct nm_spool *s, struct nm_status *status, const void *user) { +void cb_check(struct nm_spool *s, struct nm_status *status, void *user) { struct nm_info i; static char txt[256]; @@ -101,7 +101,7 @@ finish: } /* The callback function for iterating through the mail spools available */ -void cb_list(const char *spool, const void *user) { +void cb_list(const char *spool, void *user) { struct nm_spool* s = NULL; struct spool_ll* l = 0; -- cgit