Skip to content

Commit

Permalink
fixed incorrect type conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
nadvornik committed May 31, 2009
1 parent 7c03436 commit ce00baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit ce00baf

Please sign in to comment.