Fixed argument check

This commit is contained in:
2017-03-03 09:28:10 +01:00
parent a7c83105cb
commit b3aedfe697

View File

@@ -320,7 +320,7 @@ int main(int argc, char* argv[])
init_bf_object(&bf);
// check arguments
if(argc < 3) {
if(argc < 2) {
die("Need more arguments.");
}