stivale: Adjust deprecation message
diff --git a/common/protos/stivale.c b/common/protos/stivale.c
index 98d6feae..ef6d497a 100644
--- a/common/protos/stivale.c
+++ b/common/protos/stivale.c
@@ -60,7 +60,7 @@ bool stivale_load_by_anchor(void **_anchor, const char *magic,
noreturn void stivale_load(char *config, char *cmdline) {
char *depr_warn = config_get_value(config, 0, "DEPRECATION_WARNING");
if (depr_warn == NULL || strcmp(depr_warn, "no") != 0) {
- print("WARNING: The stivale protocol is deprecated in Limine and will be removed as of version 4.x.\n");
+ print("WARNING: The stivale protocol is deprecated in Limine and has been removed as of version 4.x.\n");
print(" It is recommended to move to either the Limine boot protocol or multiboot2.\n");
print(" To silence this warning add DEPRECATION_WARNING=no to the boot entry.\n");
print("\n");
diff --git a/common/protos/stivale2.c b/common/protos/stivale2.c
index e9ede2ea..cb7b4af6 100644
--- a/common/protos/stivale2.c
+++ b/common/protos/stivale2.c
@@ -93,7 +93,7 @@ static void callback_shim(struct term_context *ctx, uint64_t a, uint64_t b, uint
noreturn void stivale2_load(char *config, char *cmdline) {
char *depr_warn = config_get_value(config, 0, "DEPRECATION_WARNING");
if (depr_warn == NULL || strcmp(depr_warn, "no") != 0) {
- print("WARNING: The stivale2 protocol is deprecated in Limine and will be removed as of version 4.x.\n");
+ print("WARNING: The stivale2 protocol is deprecated in Limine and has been removed as of version 4.x.\n");
print(" It is recommended to move to either the Limine boot protocol or multiboot2.\n");
print(" To silence this warning add DEPRECATION_WARNING=no to the boot entry.\n");
print("\n");
