In apm_write(), both fd and imgsz are referenced, so don't mark the

arguments as unused.
This commit is contained in:
Marcel Moolenaar 2014-05-06 20:34:21 +00:00
parent b8cdcb8ad8
commit c562fda42a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=265462

View File

@ -63,7 +63,7 @@ apm_metadata(u_int where)
}
static int
apm_write(int fd __unused, lba_t imgsz __unused, void *bootcode __unused)
apm_write(int fd, lba_t imgsz, void *bootcode __unused)
{
u_char *buf;
struct apm_ddr *ddr;