Fix minor bug in surfaceFeatureExtract.C

This commit is contained in:
Mark Olesen
2009-12-09 13:50:31 +01:00
parent 30eac79d55
commit 0fc464254a

View File

@ -199,7 +199,7 @@ int main(int argc, char *argv[])
}
// Trim away small groups of features
if (minLen > 0 || minLen > 0)
if (minElem > 0 || minLen > 0)
{
set.trimFeatures(minLen, minElem);
Pout<< endl << "Removed small features" << endl;