Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp	(revision 54990)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp	(revision 54991)
@@ -699,5 +699,5 @@
 
                                     /*
-                                     * Current solution isn't optimal. 
+                                     * Current solution isn't optimal.
                                      * Better way is to provide API call for function
                                      * Appliance::i_findMediumFormatFromDiskImage()
@@ -727,11 +727,11 @@
                                         com::SafeArray<BSTR> extensions;
 
-                                        for (unsigned i = 0; i < mediumFormats.size(); ++i)
+                                        for (unsigned j = 0; j < mediumFormats.size(); ++j)
                                         {
                                             com::SafeArray<DeviceType_T> deviceType;
-                                            ComPtr<IMediumFormat> mediumFormat = mediumFormats[i];
+                                            ComPtr<IMediumFormat> mediumFormat = mediumFormats[j];
                                             CHECK_ERROR(mediumFormat, COMGETTER(Name)(bstrFormatName.asOutParam()));
                                             Utf8Str strFormatName = Utf8Str(bstrFormatName);
-                                            
+
                                             if (strFormatName.compare("RAW", Utf8Str::CaseInsensitive) == 0)
                                             {
@@ -747,5 +747,5 @@
                                          * extension of current file
                                          */
-                                        bool b_replace = true;
+                                        bool fReplace = true;
 
                                         const char *pszExtension = RTPathSuffix(strOverride.c_str());
@@ -753,16 +753,16 @@
                                             pszExtension++;
 
-                                        for (unsigned i = 0; i < extensions.size(); ++i)
+                                        for (unsigned j = 0; j < extensions.size(); ++j)
                                         {
-                                            Bstr bstrExt(extensions[i]);
+                                            Bstr bstrExt(extensions[j]);
                                             Utf8Str strExtension(bstrExt);
                                             if(strExtension.compare(pszExtension, Utf8Str::CaseInsensitive) == 0)
                                             {
-                                                b_replace = false;
+                                                fReplace = false;
                                                 break;
                                             }
                                         }
 
-                                        if (b_replace==true)
+                                        if (fReplace)
                                         {
                                             strOverride = strOverride.stripSuffix();
