]> git.mxchange.org Git - simgear.git/commitdiff
MSVC warning fixes
authorehofman <ehofman>
Wed, 23 Jul 2003 09:59:39 +0000 (09:59 +0000)
committerehofman <ehofman>
Wed, 23 Jul 2003 09:59:39 +0000 (09:59 +0000)
simgear/metar/Dcdmtrmk.cpp
simgear/metar/Local.h
simgear/scene/model/animation.cxx

index b8fdd231a026604cd37a7a4f75505743891c50b1..849d40a4b2bdf6045b46339bef23ded2eff5890a 100644 (file)
@@ -4165,7 +4165,7 @@ static bool isPtendency(char *string, Decoded_METAR *Mptr, int *NDEX)
  
    if(strlen(string) != 5)
       return FALSE;
-   else if(*string == '5' && ('0' <= *(string+1) <= '8') &&
+   else if(*string == '5' && ('0' <= *(string+1) && *(string+1) <= '8') &&
              (nisdigit(string+2,3) || strncmp(string+2,"///",3)
                                              == 0) )
    {
index f425777e6e13ddc1b1b8f728b43169ae8406928f..10f9081cfe2fa0331a55ef47429a59a51ddbde8b 100644 (file)
@@ -1096,8 +1096,8 @@ bool ccap2std(char *, Devaddr *, Diskaddr *);
  
 bool std2ccap(Devaddr *, Diskaddr *, char *);
  
-char *strupr(char *);
-char *strlwr(char *);
+//char *strupr(char *);
+//char *strlwr(char *);
 //char *strdup(char *);
 //int strcmpi(char *, char *);
  
index dc4ffc695b90fdcb7f858b05e3d23d7c362b1351..f3a1b708f05c01a0a1bb5756fcaa0ba97432c31e 100644 (file)
@@ -553,7 +553,7 @@ SGTexMultipleAnimation::SGTexMultipleAnimation( SGPropertyNode *prop_root,
   : SGAnimation(props, new ssgTexTrans),
       _prop((SGPropertyNode *)prop_root->getNode(props->getStringValue("property", "/null"), true))
 {
-  int i;
+  unsigned int i;
   // Load animations
   vector<SGPropertyNode_ptr> transform_nodes = props->getChildren("transform");
   _transform = new TexTransform [transform_nodes.size()];