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:
@@ -2003,6 +2003,7 @@ static char *unconverted_filename = 0, *converted_filename = 0;
|
|||||||
staticfn int
|
staticfn int
|
||||||
doconvert_file(const char *filename, int sfstatus, boolean unconvert)
|
doconvert_file(const char *filename, int sfstatus, boolean unconvert)
|
||||||
{
|
{
|
||||||
|
nhUse(filename);
|
||||||
nhUse(sfstatus);
|
nhUse(sfstatus);
|
||||||
nhUse(unconvert);
|
nhUse(unconvert);
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user