From 3bb591ce9a8849620742e6be1af5fa57e085c07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 31 May 2005 01:19:43 +0000 Subject: [PATCH] We don't want to drop into the kernel debugger for that right now (FATAL() would be okay, but it's currently configured to panic). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12912 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/Index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }