diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-14 10:51:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-14 10:51:11 +0800 |
commit | 6b12be62e100934ccae65f197c8c7eef2c8ae3a4 (patch) | |
tree | 1323080c8665ed0d3024545345cba825708de76d /plugins/ipod-sync/ipod.c | |
parent | 6ee3d89d0b3707cc6f48b1e0c9099623fd034c92 (diff) | |
download | gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.tar.gz gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.tar.zst gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.zip |
Fix coding style.
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 75568660f1..ee7bfcb501 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] = (gchar*)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] = (gchar*)UMOUNT; + argv[0] = (gchar *)UMOUNT; argv[1] = device; argv[2] = NULL; |