diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-19 17:43:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-19 17:43:09 +0100 |
commit | 32526b3c1846025f0e655f41efd4e5428da16b6c (patch) | |
tree | e9f3ea5e0daaada049e905b5f1b38b4a45511f3d /src/os_amiga.c | |
parent | d383c92ec1d14ffd5c3802f0ffd763e91d547fa8 (diff) | |
download | vim-git-32526b3c1846025f0e655f41efd4e5428da16b6c.tar.gz |
patch 8.1.0779: argument for message functions is inconsistentv8.1.0779
Problem: Argument for message functions is inconsistent.
Solution: Make first argument to msg() "char *".
Diffstat (limited to 'src/os_amiga.c')
-rw-r--r-- | src/os_amiga.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/os_amiga.c b/src/os_amiga.c index 1cd1a191a..de8bf190a 100644 --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -1230,10 +1230,10 @@ mch_call_shell( if (x < 0) # endif { - MSG_PUTS(_("Cannot execute ")); + msg_puts(_("Cannot execute ")); if (cmd == NULL) { - MSG_PUTS(_("shell ")); + msg_puts(_("shell ")); msg_outtrans(p_sh); } else @@ -1253,7 +1253,7 @@ mch_call_shell( { msg_putchar('\n'); msg_outnum((long)x); - MSG_PUTS(_(" returned\n")); + msg_puts(_(" returned\n")); } retval = x; } @@ -1320,7 +1320,7 @@ mch_call_shell( if (x < 0) # endif { - MSG_PUTS(_("Cannot execute ")); + msg_puts(_("Cannot execute ")); if (use_execute) { if (cmd == NULL) @@ -1330,7 +1330,7 @@ mch_call_shell( } else { - MSG_PUTS(_("shell ")); + msg_puts(_("shell ")); msg_outtrans(shellcmd); } msg_putchar('\n'); @@ -1355,7 +1355,7 @@ mch_call_shell( { msg_putchar('\n'); msg_outnum((long)x); - MSG_PUTS(_(" returned\n")); + msg_puts(_(" returned\n")); } retval = x; } |