Fixed build break

git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@775 d0cd1f9f-072b-0410-8dd7-cf729c803f20
This commit is contained in:
theraysmith@gmail.com 2012-10-09 01:28:37 +00:00
parent 605fd7488b
commit ca9daf2573

View File

@ -75,13 +75,12 @@ FEATURE_SET ExtractMicros(TBLOB *Blob, const DENORM& denorm) {
// Assert that feature parameters are well defined.
int i;
for (i = 0; i < Feature->Type->NumParams; i++) {
assert (!isnan(Feature->Params[i]));
ASSERT_HOST(!isnan(Feature->Params[i]));
}
#endif
AddFeature(FeatureSet, Feature);
}
FreeMicroFeatures(OldFeatures);
return (FeatureSet);
return FeatureSet;
} /* ExtractMicros */