diff --git a/src/tests/add-ons/kernel/file_systems/bfs/r5/Utility.cpp b/src/tests/add-ons/kernel/file_systems/bfs/r5/Utility.cpp index 8e01fcb459..b05f568c5f 100644 --- a/src/tests/add-ons/kernel/file_systems/bfs/r5/Utility.cpp +++ b/src/tests/add-ons/kernel/file_systems/bfs/r5/Utility.cpp @@ -1,8 +1,8 @@ /* Utility - some helper classes -** -** Initial version by Axel Dörfler, axeld@pinc-software.de -** This file may be used under the terms of the OpenBeOS License. -*/ + * + * Copyright 2001-2005, Axel Dörfler, axeld@pinc-software.de. + * This file may be used under the terms of the MIT License. + */ #include "Utility.h" @@ -127,7 +127,7 @@ BlockArray::Remove(off_t value) if (fArray == NULL) return B_ENTRY_NOT_FOUND; - return fArray->Remove(value) ? B_OK : B_ENTRY_NOT_FOUND; + return fArray->Remove(value) ? (status_t)B_OK : (status_t)B_ENTRY_NOT_FOUND; }