diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-11 11:41:26 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-11 11:41:26 +0800 |
commit | d5f9483b16cea64491eb5fe4eec815c61126849e (patch) | |
tree | 2d1b057170244697a8b4276af521d91f90d0726e /mail/session.c | |
parent | bef4579009b101276145fe263f8acea9ee50cf22 (diff) | |
download | gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.tar.gz gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.tar.zst gsoc2013-evolution-d5f9483b16cea64491eb5fe4eec815c61126849e.zip |
Fixed some warnings.
2000-08-10 Christopher James Lahey <clahey@helixcode.com>
* folder-browser-factory.c, message-list.c, message-thread.c,
session.c: Fixed some warnings.
svn path=/trunk/; revision=4722
Diffstat (limited to 'mail/session.c')
-rw-r--r-- | mail/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/session.c b/mail/session.c index eaa5d72dfa..086a7c12fc 100644 --- a/mail/session.c +++ b/mail/session.c @@ -60,7 +60,7 @@ mail_request_dialog (const char *prompt, gboolean secret, const char *key) ans == NULL) return NULL; #else - if (!mail_op_get_password (prompt, secret, &ans)) + if (!mail_op_get_password ((char *) prompt, secret, &ans)) return NULL; #endif |