diff --git a/src/add-ons/kernel/file_systems/bfs/Index.cpp b/src/add-ons/kernel/file_systems/bfs/Index.cpp index 8756f47b82..3831540ff0 100644 --- a/src/add-ons/kernel/file_systems/bfs/Index.cpp +++ b/src/add-ons/kernel/file_systems/bfs/Index.cpp @@ -263,7 +263,7 @@ Index::Update(Transaction &transaction, const char *name, int32 type, const uint status = tree->Remove(transaction, (const uint8 *)oldKey, oldLength, inode->ID()); if (status == B_ENTRY_NOT_FOUND) { // That's not nice, but should be no reason to let the whole thing fail - FATAL(("Could not find value in index \"%s\"!\n", name)); + INFORM(("Could not find value in index \"%s\"!\n", name)); } else if (status < B_OK) return status; }