follow-up: fix a warning

files.c:2004:28: warning: unused parameter ‘filename’ [-Wunused-parameter]
 2004 | doconvert_file(const char *filename, int sfstatus, boolean unconvert)
      |                ~~~~~~~~~~~~^~~~~~~~
This commit is contained in:
nhmall
2025-05-25 20:47:33 -04:00
parent a654d08c3b
commit 92f4e191d9

View File

@@ -2003,6 +2003,7 @@ static char *unconverted_filename = 0, *converted_filename = 0;
staticfn int
doconvert_file(const char *filename, int sfstatus, boolean unconvert)
{
nhUse(filename);
nhUse(sfstatus);
nhUse(unconvert);
return 1;