Fixed invocation of make_dafsa.py in psl2c.c

This commit is contained in:
Tim Rühsen 2016-07-13 11:13:04 +02:00
parent 972cb789dd
commit 852931571f
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ static int _print_psl_entries_dafsa_binary(const char *fname, const _psl_vector_
return 3;
}
snprintf(cmd, sizeof(cmd), MAKE_DAFSA " --binary in.tmp %s", fname);
snprintf(cmd, sizeof(cmd), MAKE_DAFSA " --output-format=binary in.tmp %s", fname);
if ((rc = system(cmd))) {
fprintf(stderr, "Failed to execute '%s' (%d)\n", cmd, rc);
ret = 2;