1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-10-30 23:47:50 -04:00

Remove unnecessary func params

This commit is contained in:
Alex Kotov 2023-01-04 20:35:09 +04:00
parent f5a6aa9c95
commit 73269079af
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
6 changed files with 13 additions and 23 deletions

View file

@ -31,8 +31,7 @@ void test_main()
const bool result = KernAux_Multiboot2_Info_to_memmap(
&multiboot2_info_example0.multiboot2_info,
builder,
NULL
builder
);
assert(!result);
}
@ -45,8 +44,7 @@ void test_main()
const bool result = KernAux_Multiboot2_Info_to_memmap(
(const struct KernAux_Multiboot2_Info*)
&multiboot2_info_example1,
builder,
NULL
builder
);
assert(result);
@ -66,8 +64,7 @@ void test_main()
const bool result = KernAux_Multiboot2_Info_to_memmap(
&multiboot2_info_example2.multiboot2_info,
builder,
NULL
builder
);
assert(result);