From 38f5c6bbc48a039a630fcf8fbf3cf1078266b496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 10 May 2004 18:57:58 +0000 Subject: [PATCH] Corrected elf_load_image() prototype; it requires an object of the Directory class as first argument. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7505 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/boot/loader/elf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/boot/loader/elf.h b/src/kernel/boot/loader/elf.h index 03cf817c91..d96dadcd93 100644 --- a/src/kernel/boot/loader/elf.h +++ b/src/kernel/boot/loader/elf.h @@ -1,5 +1,5 @@ /* -** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved. +** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the OpenBeOS License. */ #ifndef LOADER_ELF_H @@ -10,7 +10,7 @@ #include -extern status_t elf_load_image(Node *node, const char *path); +extern status_t elf_load_image(Directory *directory, const char *path); extern status_t elf_load_image(int fd, preloaded_image *image); #endif /* LOADER_ELF_H */