summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 34f318b15..4a3b2d4ea 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -772,7 +772,7 @@ static void fixupSingleFilename( gchar **orig, gchar **spare )
static void fixupFilenameEncoding( std::vector<gchar*> &filenames)
{
- for (int i=0; i<filenames.size(); ++i ) {
+ for (unsigned int i=0; i<filenames.size(); ++i) {
gchar *fn = filenames[i];
gchar *newFileName = Inkscape::IO::locale_to_utf8_fallback(fn, -1, NULL, NULL, NULL);
if ( newFileName ) {