aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-card.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-05 13:15:45 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-05 13:15:45 +0800
commit94d742f9f3e674ae5a905deb61f6858d83ae14f1 (patch)
treecd0a97af7482ca06e836a5218d32569a68d06c16 /addressbook/backend/ebook/e-card.c
parent5e58fb6edb84a3be2660cf7dcd5bed975a5d6faf (diff)
downloadgsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar.gz
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar.bz2
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar.lz
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar.xz
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.tar.zst
gsoc2013-evolution-94d742f9f3e674ae5a905deb61f6858d83ae14f1.zip
Fixed a warning.
2000-08-05 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-card-simple.c: Fixed a warning. * backend/ebook/e-card.c: Cast to (char *) in e_card_load_cards_from_file since libversit isn't const correct. * backend/pas/pas-backend-file.c: Fixed a warning. svn path=/trunk/; revision=4543
Diffstat (limited to 'addressbook/backend/ebook/e-card.c')
-rw-r--r--addressbook/backend/ebook/e-card.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c
index 85ef7366d5..a81544dcd3 100644
--- a/addressbook/backend/ebook/e-card.c
+++ b/addressbook/backend/ebook/e-card.c
@@ -1692,7 +1692,7 @@ e_card_init (ECard *card)
GList *
e_card_load_cards_from_file(const char *filename)
{
- VObject *vobj = Parse_MIME_FromFileName(filename);
+ VObject *vobj = Parse_MIME_FromFileName((char *) filename);
GList *list = NULL;
while(vobj) {
VObject *next;