fixing general style

This commit is contained in:
Paul Cruz
2017-06-15 18:06:32 -07:00
parent 623b8fce85
commit 2f30433cd7
+2 -4
View File
@@ -1607,11 +1607,9 @@ int main(int argc, char** argv)
return generateFile(seed, path, origPath);
} else if (genDict == 0){
return generateCorpus(seed, numFiles, path, origPath);
} else if (numFiles == 0){
/* should generate a single file with a dictionary */
return generateCorpusWithDict(seed, 1, path, origPath, dictSize);
} else {
/* should generate multiple files with a dictionary */
/* should generate files with a dictionary */
numFiles = (numFiles == 0) ? 1 : numFiles;
return generateCorpusWithDict(seed, numFiles, path, origPath, dictSize);
}