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:
parent
f5a6aa9c95
commit
73269079af
6 changed files with 13 additions and 23 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue