r287: fixed the INT32_MAX compiling error

This commit is contained in:
Heng Li
2020-07-19 11:22:23 -04:00
parent 952471657f
commit ff4ef89fe3
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <limits.h>
#include <sys/time.h>
#include "CommandLines.h"
#include "ketopt.h"
@@ -128,7 +129,7 @@ void init_opt(hifiasm_opt_t* asm_opt)
asm_opt->purge_simi_rate = 0.75;
asm_opt->purge_overlap_len = 1;
asm_opt->recover_atg_cov_min = -1024;
asm_opt->recover_atg_cov_max = INT32_MAX;
asm_opt->recover_atg_cov_max = INT_MAX;
asm_opt->hom_global_coverage = -1;
}