summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-27 19:45:22 +0000
committerFelipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>2018-03-27 19:46:35 +0000
commit5e6745da63bc715ca8e52ad859971ac669226951 (patch)
tree589ff8f175d0689cfae7c7cc29a8698a68a62587 /src/main.cpp
parentmove FTFixedToDouble / FTDoubleToFixed to a common header (diff)
downloadinkscape-5e6745da63bc715ca8e52ad859971ac669226951.tar.gz
inkscape-5e6745da63bc715ca8e52ad859971ac669226951.zip
Minor cleanup of warnings. No functional change.
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 ) {