diff options
author | James McCoy <jamessan@jamessan.com> | 2021-11-01 11:27:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 11:27:42 -0400 |
commit | b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e (patch) | |
tree | d8fc27ffbbb9ece2b15008b09d4b4a6b89d0d20b /src/nvim/os/dl.c | |
parent | 961cd83b3b39855b232841f37ded856c8621bd90 (diff) | |
parent | 9e479ea05e00e63ccc985fc8ce4912c709f30111 (diff) | |
download | rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.tar.gz rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.tar.bz2 rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.zip |
Merge pull request #16131 from jamessan/vim-8.1.0306
Diffstat (limited to 'src/nvim/os/dl.c')
-rw-r--r-- | src/nvim/os/dl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/os/dl.c b/src/nvim/os/dl.c index b2e3994d10..7d095d31e3 100644 --- a/src/nvim/os/dl.c +++ b/src/nvim/os/dl.c @@ -49,7 +49,7 @@ bool os_libcall(const char *libname, const char *funcname, const char *argv, int // open the dynamic loadable library if (uv_dlopen(libname, &lib)) { - EMSG2(_("dlerror = \"%s\""), uv_dlerror(&lib)); + semsg(_("dlerror = \"%s\""), uv_dlerror(&lib)); uv_dlclose(&lib); return false; } @@ -57,7 +57,7 @@ bool os_libcall(const char *libname, const char *funcname, const char *argv, int // find and load the requested function in the library gen_fn fn; if (uv_dlsym(&lib, funcname, (void **)&fn)) { - EMSG2(_("dlerror = \"%s\""), uv_dlerror(&lib)); + semsg(_("dlerror = \"%s\""), uv_dlerror(&lib)); uv_dlclose(&lib); return false; } |