More fixes for C++ compilation proposed by Steffan Webb.

This commit is contained in:
fc_botelho
2006-07-27 00:44:14 +00:00
parent b5070227c6
commit 4f41cdc956
3 changed files with 3 additions and 3 deletions

View File

@@ -230,7 +230,7 @@ int main(int argc, char **argv)
cmph_config_set_mphf_fd(config, mphf_fd);
cmph_config_set_memory_availability(config, memory_availability);
cmph_config_set_b(config, b);
if(mph_algo == CMPH_BMZ && c >= 2.0) c=1.15;
if((mph_algo == CMPH_BMZ || mph_algo == CMPH_BRZ) && c >= 2.0) c=1.15;
if (c != 0) cmph_config_set_graphsize(config, c);
mphf = cmph_new(config);
cmph_config_destroy(config);