commit | 99b1272f88a493421d438e5e184003763efb4b8f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Jan 14 20:16:40 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Jan 14 20:16:40 2019 +0100 |
tree | 534482629c45c727e7856add1618a9f90f6b7c4c | |
parent | b1443b480fe9965a6eaa9211657d299e88964084 [diff] [blame] |
patch 8.1.0745: compiler warnings for signed/unsigned string Problem: Compiler warnings for signed/unsigned string. Solution: Remove type casts. (John Marriott)
diff --git a/src/mbyte.c b/src/mbyte.c index 9c40072..66a3cc2 100644 --- a/src/mbyte.c +++ b/src/mbyte.c
@@ -560,7 +560,7 @@ else if (GetLastError() == ERROR_INVALID_PARAMETER) { codepage_invalid: - return (char_u *)N_("E543: Not a valid codepage"); + return N_("E543: Not a valid codepage"); } } #endif