From: Vladimir Nadvornik Date: Sun, 31 May 2009 14:32:39 +0000 (+0000) Subject: fixed incorrect type conversion X-Git-Tag: v1.0.0~183 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce00bafc5df7e6b25402cd9017618b9e57f0b9f0;p=geeqie.git fixed incorrect type conversion --- diff --git a/src/main.c b/src/main.c index 4cfb4efca..91c7a9fc7 100644 --- a/src/main.c +++ b/src/main.c @@ -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; }