]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_props.hxx
- Added ultra-light traffic is now a separate traffic class that can have its
[flightgear.git] / src / Main / fg_props.hxx
index b20f102922b88488d2383351e3f9c8b1c2665750..4025b185dfc424a2298ddeacdd879ed031d6f619 100644 (file)
@@ -538,7 +538,7 @@ public:
         if (node->getType() != SGPropertyNode::STRING)
             return;
 
-        char *s = (char *)node->getStringValue();
+        char *s = const_cast<char *>(node->getStringValue());
         for (; *s; s++)
             *s = toupper(*s);
     }