From ef9cf5ac1b94ea9454f7b2ff4fd733a064231f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 22 Jun 2004 00:23:15 +0000 Subject: [PATCH] platform_add_block_devices() no returns B_OK, but still does nothing. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8106 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/boot/platform/bios_ia32/devices.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/boot/platform/bios_ia32/devices.cpp b/src/kernel/boot/platform/bios_ia32/devices.cpp index 93d2ba3670..ba69ece50c 100644 --- a/src/kernel/boot/platform/bios_ia32/devices.cpp +++ b/src/kernel/boot/platform/bios_ia32/devices.cpp @@ -1,6 +1,6 @@ /* ** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Distributed under the terms of the Haiku License. */ @@ -350,6 +350,6 @@ platform_add_block_devices(stage2_args *args, NodeList *devicesList) if (get_number_of_drives(&driveCount) == B_OK) printf("number of drives: %d\n", driveCount); - return B_ERROR; + return B_OK; }