tabfile: fix mismatching popen/fclose

This commit is contained in:
Přemysl Eric Janouch 2022-07-24 21:57:47 +02:00
parent 92556d5269
commit 6f5e32386e
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -218,6 +218,6 @@ main (int argc, char *argv[])
fatal ("Error: failed to write the dictionary: %s\n", error->message);
generator_free (generator);
fclose (fsorted);
pclose (fsorted);
return 0;
}