diff options
Diffstat (limited to 'sys/boot/userboot/test')
-rw-r--r-- | sys/boot/userboot/test/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/userboot/test/test.c b/sys/boot/userboot/test/test.c index 63cb5e8..ef5c9a8 100644 --- a/sys/boot/userboot/test/test.c +++ b/sys/boot/userboot/test/test.c @@ -364,7 +364,7 @@ test_getmem(void *arg, uint64_t *lowmem, uint64_t *highmem) *highmem = 0; } -struct loader_callbacks_v1 cb = { +struct loader_callbacks cb = { .putc = test_putc, .getc = test_getc, .poll = test_poll, @@ -405,7 +405,7 @@ int main(int argc, char** argv) { void *h; - void (*func)(struct loader_callbacks_v1 *, void *, int, int); + void (*func)(struct loader_callbacks *, void *, int, int); int opt; char *disk_image = NULL; |