Fixed two warnings.
This commit is contained in:
parent
3b33377124
commit
45bb767d79
1 changed files with 4 additions and 4 deletions
|
@ -11273,10 +11273,10 @@ return 23;
|
|||
keyp= key; valp= val;
|
||||
while(keyp<keye) { // for all key/val pairs of this object
|
||||
if(strcmp(*keyp,"type")==0) {
|
||||
if(global_completemp &&
|
||||
strcmp(*valp,"multipolygon")==0 ||
|
||||
global_completeboundaries &&
|
||||
strcmp(*valp,"boundary")==0)
|
||||
if((global_completemp &&
|
||||
strcmp(*valp,"multipolygon")==0) ||
|
||||
(global_completeboundaries &&
|
||||
strcmp(*valp,"boundary")==0))
|
||||
ismp= true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue