Fixed two warnings.

This commit is contained in:
Maxim Pimenov 2018-06-20 21:08:42 +03:00 committed by Ilya Zverev
parent 3b33377124
commit 45bb767d79

View file

@ -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;
}