Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c64152bf authored by Alexander Beregalov's avatar Alexander Beregalov Committed by Michal Marek
Browse files

genksyms: close ref_file after use



It is the last place when the file is read, so close it.

Signed-off-by: default avatarAlexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent da60fbbc
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -758,8 +758,10 @@ int main(int argc, char **argv)
		/* setlinebuf(debugfile); */
	}

	if (flag_reference)
	if (flag_reference) {
		read_reference(ref_file);
		fclose(ref_file);
	}

	yyparse();