From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 12/13] installer: Fix more const warnings Date: Fri, 05 Apr 2024 12:59:41 +0000 Message-ID: <20240405125942.1803058-12-michael.tremer@ipfire.org> In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2206293695064421312==" List-Id: --===============2206293695064421312== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- src/installer/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/installer/main.c b/src/installer/main.c index 6253df550..944ffa593 100644 --- a/src/installer/main.c +++ b/src/installer/main.c @@ -595,7 +595,7 @@ int main(int argc, char *argv[]) { =20 // Check how many disks have been found and what // we can do with them. - unsigned int num_disks =3D hw_count_disks((const struct hw_disk**)disks); + unsigned int num_disks =3D hw_count_disks(disks); =20 while (1) { // no harddisks found @@ -647,7 +647,7 @@ int main(int argc, char *argv[]) { if (config.unattended) break; =20 - num_selected_disks =3D hw_count_disks((const struct hw_disk**)selected_dis= ks); + num_selected_disks =3D hw_count_disks(selected_disks); =20 if (num_selected_disks =3D=3D 1) { snprintf(message, sizeof(message), --=20 2.39.2 --===============2206293695064421312==--