aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r--src/nvim/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/memory.c b/src/nvim/memory.c
index 5345580b93..547a9015b7 100644
--- a/src/nvim/memory.c
+++ b/src/nvim/memory.c
@@ -510,7 +510,7 @@ void do_outofmem_msg(size_t size)
* message fails, e.g. when setting v:errmsg. */
did_outofmem_msg = true;
- EMSGU(_("E342: Out of memory! (allocating %" PRIu64 " bytes)"), size);
+ semsg(_("E342: Out of memory! (allocating %" PRIu64 " bytes)"), (uint64_t)size);
}
}