diff --git a/libraries/file/file.c b/libraries/file/file.c index 38206f21..143714a5 100644 --- a/libraries/file/file.c +++ b/libraries/file/file.c @@ -15,7 +15,7 @@ return_type file_init(ipc_structure_type *vfs_structure, tag_type *tag) mailbox_id_type mailbox_id[10]; unsigned int services = 10; - if (ipc_service_resolve("virtual_file_system", mailbox_id, &services, 0, tag) != IPC_RETURN_SUCCESS) + if (ipc_service_resolve("virtual_file_system", mailbox_id, &services, 5, tag) != IPC_RETURN_SUCCESS) { return FILE_RETURN_SERVICE_UNAVAILABLE; } diff --git a/servers/system/boot/boot.c b/servers/system/boot/boot.c index 124a9566..eee04af6 100644 --- a/servers/system/boot/boot.c +++ b/servers/system/boot/boot.c @@ -40,8 +40,7 @@ int main(void) system_process_name_set(PACKAGE_NAME); system_thread_name_set("Initialising"); - if (log_init(&log_structure, PACKAGE_NAME, &empty_tag) != - LOG_RETURN_SUCCESS) + if (log_init(&log_structure, PACKAGE_NAME, &empty_tag) != LOG_RETURN_SUCCESS) { return -1; }