diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-02-20 02:16:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-02-20 02:16:18 +0000 |
commit | 77f66d6c8de44c55bb02c63f0693c50912277f06 (patch) | |
tree | bfac011f41b3b5c1eff4dde7e09d47d81feba0b4 /src/misc2.c | |
parent | 85c79d30ffe683c95c768b918789859dde452b04 (diff) | |
download | vim-git-77f66d6c8de44c55bb02c63f0693c50912277f06.tar.gz |
updated for version 7.0-198v7.0.198
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc2.c b/src/misc2.c index 9ed3e402e..14c4784cf 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -1246,7 +1246,7 @@ vim_strsave_shellescape(string) char_u *escaped_string; /* First count the number of extra bytes required. */ - length = STRLEN(string) + 3; /* two quotes and the trailing NUL */ + length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */ for (p = string; *p != NUL; mb_ptr_adv(p)) { # if defined(WIN32) || defined(WIN16) || defined(DOS) @@ -3718,7 +3718,7 @@ get_crypt_key(store, twice) * * ATTENTION: * ========== - * Also we use an allocated search context here, this functions ARE NOT + * Also we use an allocated search context here, this functions are NOT * thread-safe!!!!! * * To minimize parameter passing (or because I'm to lazy), only the |