diff options
author | Milan Crha <mcrha@redhat.com> | 2009-06-05 20:48:29 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-06-05 20:50:42 +0800 |
commit | 84c55f4e983c4458a08f9bd19fe63b3fd7af2fa7 (patch) | |
tree | c6cb7ea33f0ef3424cc060d4d1b79287f8dd0a10 /plugins/ipod-sync/ipod.c | |
parent | a979826a00beebd29850445ff2a27187946fade1 (diff) | |
download | gsoc2013-evolution-84c55f4e983c4458a08f9bd19fe63b3fd7af2fa7.tar.gz gsoc2013-evolution-84c55f4e983c4458a08f9bd19fe63b3fd7af2fa7.tar.zst gsoc2013-evolution-84c55f4e983c4458a08f9bd19fe63b3fd7af2fa7.zip |
Fix even more compiler warnings and disable one for format strings
Diffstat (limited to 'plugins/ipod-sync/ipod.c')
-rw-r--r-- | plugins/ipod-sync/ipod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ipod-sync/ipod.c b/plugins/ipod-sync/ipod.c index 41267ae3e6..75568660f1 100644 --- a/plugins/ipod-sync/ipod.c +++ b/plugins/ipod-sync/ipod.c @@ -70,7 +70,7 @@ try_mount (gchar *device) GError *err = NULL; gint exit_status; - argv[0] = MOUNT; + argv[0] = (gchar*)MOUNT; argv[1] = device; argv[2] = NULL; @@ -94,7 +94,7 @@ try_umount (gchar *device) GError *err = NULL; gint exit_status; - argv[0] = UMOUNT; + argv[0] = (gchar*)UMOUNT; argv[1] = device; argv[2] = NULL; |