aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2018-01-16 07:53:22 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2018-01-16 07:53:22 +0000
commit5f403357ddf4202f0a0111a8bf906ef835a72c21 (patch)
tree0e8361d2420d80a74472123fc601dd35e3ed4afa /libsylph
parentc660402460e9f7dc43e9f9644bc47e482c023c9f (diff)
fixed typos (#278).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3605 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/folder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsylph/folder.c b/libsylph/folder.c
index f188dba5..6fffe2dc 100644
--- a/libsylph/folder.c
+++ b/libsylph/folder.c
@@ -1133,7 +1133,7 @@ gchar *folder_get_path(Folder *folder)
path = g_filename_from_utf8(LOCAL_FOLDER(folder)->rootpath,
-1, NULL, NULL, NULL);
if (!path) {
- g_warning("folder_get_path: faild to convert character set\n");
+ g_warning("folder_get_path: failed to convert character set\n");
path = g_strdup(LOCAL_FOLDER(folder)->rootpath);
}
if (!g_path_is_absolute(path)) {
@@ -1184,7 +1184,7 @@ gchar *folder_item_get_path(FolderItem *item)
item_path = g_filename_from_utf8(item->path, -1,
NULL, NULL, NULL);
if (!item_path) {
- g_warning("folder_item_get_path: faild to convert character set\n");
+ g_warning("folder_item_get_path: failed to convert character set\n");
item_path = g_strdup(item->path);
}
#ifdef G_OS_WIN32