aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/time.c')
-rw-r--r--src/nvim/os/time.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/time.c b/src/nvim/os/time.c
index 7ba2bd155e..7fc43d7991 100644
--- a/src/nvim/os/time.c
+++ b/src/nvim/os/time.c
@@ -188,6 +188,7 @@ char *os_ctime_r(const time_t *restrict clock, char *restrict result, size_t res
if (clock_local_ptr == NULL) {
xstrlcpy(result, _("(Invalid)"), result_len);
} else {
+ // xgettext:no-c-format
strftime(result, result_len, _("%a %b %d %H:%M:%S %Y"), clock_local_ptr);
}
xstrlcat(result, "\n", result_len);