aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ipod-sync/ipod.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-06-18 13:15:58 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-06-18 13:15:58 +0800
commitdffd9d69efa547950e32ae3bfb291e0c527bf580 (patch)
tree0a1b4728aed9f889686a8f196f8d469081e44cd4 /plugins/ipod-sync/ipod.c
parent2c260daf732ba0ae86fbd1d9e43f3e7098e68721 (diff)
downloadgsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.gz
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.bz2
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.lz
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.xz
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.zst
gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.zip
Fix for bug #437584
svn path=/trunk/; revision=33697
Diffstat (limited to 'plugins/ipod-sync/ipod.c')
-rw-r--r--plugins/ipod-sync/ipod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ipod-sync/ipod.c b/plugins/ipod-sync/ipod.c
index d5ea660056..292d07681f 100644
--- a/plugins/ipod-sync/ipod.c
+++ b/plugins/ipod-sync/ipod.c
@@ -62,7 +62,7 @@ try_mount (char *device)
if (!g_spawn_sync (g_get_home_dir (), argv, NULL, 0, NULL, NULL, NULL,
NULL, &exit_status, &err))
{
- warn ("try_mount failed: %s", err->message);
+ g_warning ("try_mount failed: %s", err->message);
return FALSE;
}
@@ -88,7 +88,7 @@ try_umount (char *device)
if (!g_spawn_sync (g_get_home_dir (), argv, NULL, 0, NULL, NULL, NULL,
NULL, &exit_status, &err))
{
- warn ("try_umount failed: %s", err->message);
+ g_warning ("try_umount failed: %s", err->message);
return FALSE;
}