From 1673659da2aa1f33c63b73059ac78ac9a0f263e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Corr=C3=AAa=20da=20Silva=20Sanches?= Date: Wed, 28 Mar 2018 14:14:31 -0300 Subject: a bit more of warning cleanup --- src/ui/interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui/interface.cpp') 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); -- cgit v1.2.3