summaryrefslogtreecommitdiffstats
path: root/src/nmail-async.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2003-10-22 22:59:07 +0000
committerLennart Poettering <lennart@poettering.net>2003-10-22 22:59:07 +0000
commitf507edf2917fd39ba7d66eea0ff9b16c8d5ffa56 (patch)
tree8ae2cd6f85604c6b27532d9343c692e1ea671324 /src/nmail-async.c
parent52a7a526ac02a83952bff60fe25c3bbd967bb6f3 (diff)
some const fixes
git-svn-id: file:///home/lennart/svn/public/libnewmail/trunk@31 2d4e79f2-dfba-0310-a9f4-9628e67fcdf4
Diffstat (limited to 'src/nmail-async.c')
-rw-r--r--src/nmail-async.c4
1 files changed, 2 insertions, 2 deletions
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;