diff --git a/headers/private/file_systems/QueryParser.h b/headers/private/file_systems/QueryParser.h index 7c5fcc70f6..cf17090fa6 100644 --- a/headers/private/file_systems/QueryParser.h +++ b/headers/private/file_systems/QueryParser.h @@ -630,10 +630,9 @@ Equation::ConvertValue(type_code type) fSize = sizeof(double); break; default: - QUERY_FATAL("query value conversion to 0x%x requested!\n", - (int)type); - // should we fail here or just do a safety int32 conversion? - return B_ERROR; + QUERY_INFORM("query attribute '%s': unsupported value conversion to 0x%x requested!\n", + fAttribute, (int)type); + return B_BAD_TYPE; } fType = type;