Skip to content

Commit 6f45232

Browse files
committed
Revert "Fix invalid thread number for gff2db lookupwriter"
This reverts commit 7b95387.
1 parent 5e119e9 commit 6f45232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/gff2db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ int gff2db(int argc, const char **argv, const Command &command) {
3333
headerWriter.open();
3434
std::string outLookup = outDb + ".lookup";
3535
std::string outLookupIndex = outDb + ".lookup.index";
36-
DBWriter lookupWriter(outLookup.c_str(), outLookupIndex.c_str(), par.threads, par.compressed, Parameters::DBTYPE_OMIT_FILE);
36+
DBWriter lookupWriter(outLookup.c_str(), outLookupIndex.c_str(), par.threads, 0, Parameters::DBTYPE_OMIT_FILE);
3737
lookupWriter.open();
3838

3939
FILE *source = FileUtil::openAndDelete((outDb + ".source").c_str(), "w");

0 commit comments

Comments
 (0)