Mercurial > geeqie
changeset 1620:19c7c73d9fc4
fixed incorrect type conversion
author | nadvornik |
---|---|
date | Sun, 31 May 2009 14:32:39 +0000 |
parents | d35a0836c6b5 |
children | 7d631a8de48e |
files | src/main.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main.c Sun May 31 13:32:09 2009 +0000 +++ b/src/main.c Sun May 31 14:32:39 2009 +0000 @@ -854,7 +854,7 @@ 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; }