fixed incorrect type conversion
authorVladimir Nadvornik <[email protected]>
Sun, 31 May 2009 14:32:39 +0000 (14:32 +0000)
committerVladimir Nadvornik <[email protected]>
Sun, 31 May 2009 14:32:39 +0000 (14:32 +0000)
src/main.c

index 4cfb4efca649be0af3b394bb7180e49f1d38b65f..91c7a9fc709a732a53164665cdb07542793f43b5 100644 (file)
@@ -854,7 +854,7 @@ gint main(gint argc, gchar *argv[])
                work = command_line->cmd_list;
                while (work)
                        {
-                       collection_add(cd, file_data_new_simple((gchar *)work->data), FALSE);
+                       collection_add(cd, (FileData *)work->data, FALSE);
                        work = work->next;
                        }