Mercurial > geeqie
diff src/view_dir_list.c @ 64:04ff0df3ad2f
Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net>
* collect-table.c, dupe.c, exif.c, img-view.c info.c, layout_image.c,
md5-util.[ch], pan-view.c, remote.c, search.c, thumb_standard.c,
ui_bookmark.c, ui_misc.c, ui_pathsel.c, view_dir_list.c,
view_dir_tree.c, view_file_icon.c, view_file_list.c: Fix signedness
warnings in gcc 4.0.
| author | gqview |
|---|---|
| date | Mon, 15 Aug 2005 21:41:20 +0000 |
| parents | 458e396d3f35 |
| children | b15d4c18168f |
line wrap: on
line diff
--- a/src/view_dir_list.c Mon Aug 15 20:47:03 2005 +0000 +++ b/src/view_dir_list.c Mon Aug 15 21:41:20 2005 +0000 @@ -481,7 +481,7 @@ if (text) { gtk_selection_data_set (selection_data, selection_data->target, - 8, text, length); + 8, (guchar *)text, length); g_free(text); } } @@ -537,7 +537,7 @@ GList *list; gint active; - list = uri_list_from_text(selection_data->data, TRUE); + list = uri_list_from_text((gchar *)selection_data->data, TRUE); if (!list) return; active = access_file(fd->path, W_OK | X_OK);
