aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 0c474c9ad4..ac1366bfd9 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -715,7 +715,7 @@ main_loop (
* has been done, close any file for startup messages. */
if (time_fd != NULL) {
TIME_MSG("first screen update");
- TIME_MSG("--- VIM STARTED ---");
+ TIME_MSG("--- NVIM STARTED ---");
fclose(time_fd);
time_fd = NULL;
}
@@ -1468,7 +1468,7 @@ static void init_startuptime(mparm_T *paramp)
for (int i = 1; i < paramp->argc; i++) {
if (STRICMP(paramp->argv[i], "--startuptime") == 0 && i + 1 < paramp->argc) {
time_fd = mch_fopen(paramp->argv[i + 1], "a");
- time_start("--- VIM STARTING ---");
+ time_start("--- NVIM STARTING ---");
break;
}
}