summaryrefslogtreecommitdiffstats
path: root/src/ui/interface.cpp
diff options
context:
space:
mode:
authorFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-28 17:14:31 +0000
committerFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-28 19:40:50 +0000
commit1673659da2aa1f33c63b73059ac78ac9a0f263e1 (patch)
treece890bfe460953c28b9b2d8f8ac8a94d25de895a /src/ui/interface.cpp
parentUpdate HACKING.txt. Move to top directory. (diff)
downloadinkscape-1673659da2aa1f33c63b73059ac78ac9a0f263e1.tar.gz
inkscape-1673659da2aa1f33c63b73059ac78ac9a0f263e1.zip
a bit more of warning cleanup
Diffstat (limited to 'src/ui/interface.cpp')
-rw-r--r--src/ui/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp
index 0be3ef684..4ae0f4a6d 100644
--- a/src/ui/interface.cpp
+++ b/src/ui/interface.cpp
@@ -1308,7 +1308,7 @@ static void
sp_ui_import_files(gchar *buffer)
{
gchar** l = g_uri_list_extract_uris(buffer);
- for (int i = 0; i< g_strv_length (l); i++) {
+ for (unsigned int i=0; i < g_strv_length(l); i++) {
gchar *f = g_filename_from_uri (l[i], NULL, NULL);
sp_ui_import_one_file_with_check(f, NULL);
g_free(f);