diff -r 44cc4e512f81 -r a85e66272b09 src/gtkutils.c --- a/src/gtkutils.c Thu Jul 15 01:59:05 2004 +0000 +++ b/src/gtkutils.c Thu Jul 15 02:03:38 2004 +0000 @@ -749,8 +749,8 @@ if (g_file_test(path, G_FILE_TEST_IS_DIR)) { /* append a / if needed */ - if (path[strlen(path) - 1] != '/') { - dirname = g_strconcat(path, "/", NULL); + if (path[strlen(path) - 1] != G_DIR_SEPARATOR) { + dirname = g_strconcat(path, G_DIR_SEPARATOR_S, NULL); } else { dirname = g_strdup(path); }