More code style nits

This commit is contained in:
Pasi Kallinen
2026-02-07 17:03:54 +02:00
parent 8833e670cd
commit 63dd80f5ec
4 changed files with 16 additions and 8 deletions

View File

@@ -2046,13 +2046,15 @@ doconvert_file(const char *filename, int sfstatus, boolean unconvert)
}
/* convert file */
void nh_sfconvert(const char *filename)
void
nh_sfconvert(const char *filename)
{
(void) doconvert_file(filename, 0, FALSE);
}
/* unconvert file if it exists */
void nh_sfunconvert(const char *filename)
void
nh_sfunconvert(const char *filename)
{
(void) doconvert_file(filename, 0, TRUE);
}
@@ -2140,7 +2142,8 @@ delete_convertedfile(const char *basefilename)
return 0;
}
void free_convert_filenames(void)
void
free_convert_filenames(void)
{
if (converted_filename)
free((genericptr_t) converted_filename), converted_filename = 0;