diff options
Diffstat (limited to 'src/ui/interface.cpp')
| -rw-r--r-- | src/ui/interface.cpp | 2 |
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); |
