]> git.mxchange.org Git - flightgear.git/commitdiff
Fix two issues caught by the German QA department ;)
authorJames Turner <zakalawe@mac.com>
Mon, 17 Oct 2011 16:39:47 +0000 (17:39 +0100)
committerJames Turner <zakalawe@mac.com>
Mon, 17 Oct 2011 16:39:47 +0000 (17:39 +0100)
src/Main/options.cxx

index e63fac0092cfdfb3ce894f8afa36a01cf643cace..6dd374a85fc3358d9a469491902539a40df3aa9e 100644 (file)
@@ -79,6 +79,7 @@ using std::sort;
 using std::cout;
 using std::cerr;
 using std::endl;
+using std::vector;
 
 #define NEW_DEFAULT_MODEL_HZ 120
 
@@ -182,7 +183,7 @@ fgSetDefaults ()
 #elif defined(sgi)
     fgSetString("/sim/startup/browser-app", "launchWebJumper");
 #else
-    char* browserEnv = ::getenv( "WEBBROWSER" );
+    const char* browserEnv = ::getenv( "WEBBROWSER" );
     if (!browserEnv) browserEnv = "netscape";
     fgSetString("/sim/startup/browser-app", browserEnv);
 #endif
@@ -1661,7 +1662,8 @@ Options::Options() :
 // build option map
   OptionDesc *desc = &fgOptionArray[ 0 ];
   while ( desc->option != 0 ) {
-    p->options[ desc->option ] = desc++;
+    p->options[ desc->option ] = desc;
+    ++desc;
   }
 }