Silence unused parameter warnings in fspacectl(2) bootstrap stub

While here, replace spaces with tabs and add a newline at EOF.

Fixes:		5425ba8332
MFC after:	3 days
This commit is contained in:
Dimitry Andric 2021-08-28 15:37:24 +02:00
parent 08b9cc316a
commit 4544929cb5

View File

@ -36,9 +36,10 @@ __FBSDID("$FreeBSD$");
* This is currently a stub implementation of fspacectl(2).
*/
int
fspacectl(int fd, int cmd, const struct spacectl_range *rqsr, int flags,
struct spacectl_range *rmsr)
fspacectl(int fd __unused, int cmd __unused,
const struct spacectl_range *rqsr __unused, int flags __unused,
struct spacectl_range *rmsr __unused)
{
errno = ENOSYS;
return (-1);
}
errno = ENOSYS;
return (-1);
}