This should fix the PPC build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16894 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-03-27 16:36:53 +00:00
parent d140fed68f
commit 855697b122
@@ -1,5 +1,5 @@
/* /*
* Copyright 2003-2005, Axel Dörfler, [email protected]. All rights reserved. * Copyright 2003-2006, Axel Dörfler, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
@@ -23,7 +23,7 @@ char sBootPath[192];
status_t status_t
platform_get_boot_device(struct stage2_args *args, Node **_device) platform_add_boot_device(struct stage2_args *args, NodeList *devicesList)
{ {
// print out the boot path (to be removed later?) // print out the boot path (to be removed later?)
@@ -80,7 +80,7 @@ platform_get_boot_device(struct stage2_args *args, Node **_device)
if (device == NULL) if (device == NULL)
return B_NO_MEMORY; return B_NO_MEMORY;
*_device = device; devicesList->Add(device);
return B_OK; return B_OK;
} }