diff src/bar_sort.c @ 702:e07895754e65

Drop concat_dir_and_file() and use g_build_filename() instead.
author zas_
date Tue, 20 May 2008 22:09:04 +0000
parents b2eb4ff74d13
children 477f48ba28d8
line wrap: on
line diff
--- a/src/bar_sort.c	Tue May 20 22:00:14 2008 +0000
+++ b/src/bar_sort.c	Tue May 20 22:09:04 2008 +0000
@@ -272,7 +272,7 @@
 
 	if (!isdir(path)) return;
 
-	dest_path = concat_dir_and_file(path, source->name);
+	dest_path = g_build_filename(path, source->name, NULL);
 	bar_sort_undo_set(sd, NULL, source, dest_path);
 
 	list = g_list_append(NULL, file_data_ref(source));