diff options
author | ae <ae@FreeBSD.org> | 2012-10-03 17:20:34 +0000 |
---|---|---|
committer | ae <ae@FreeBSD.org> | 2012-10-03 17:20:34 +0000 |
commit | cecfb309c72bbfaffe0aaa2af2f2609d9b05d327 (patch) | |
tree | 8ab8c07b51f78596e3530d9bd523810521d9b78a /sys/boot/userboot/test | |
parent | f8be5cf46440dbdef77249e4612a2cac7c10da4a (diff) | |
download | FreeBSD-src-cecfb309c72bbfaffe0aaa2af2f2609d9b05d327.zip FreeBSD-src-cecfb309c72bbfaffe0aaa2af2f2609d9b05d327.tar.gz |
Replace all references to loader_callbacks_v1 with loader_callbacks.
Suggested by: grehan@
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; |