diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-29 22:48:23 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-29 22:48:23 -0500 |
commit | 3e665efea47911bcbe94485dd35efa4c3062c662 (patch) | |
tree | c5058e31d662c66bc5fb0b701d234f58fb9f7517 /src/nvim/os/env.c | |
parent | 75524dbf9ac0013305fa4357066c36f41784a87c (diff) | |
parent | f75de5e671699fbcff93bb9715916a02b5c7b37d (diff) | |
download | rneovim-3e665efea47911bcbe94485dd35efa4c3062c662.tar.gz rneovim-3e665efea47911bcbe94485dd35efa4c3062c662.tar.bz2 rneovim-3e665efea47911bcbe94485dd35efa4c3062c662.zip |
Merge pull request #1497 from splinterofchaos/const-attr
constify and func-attribute memory.c and strings.c
Diffstat (limited to 'src/nvim/os/env.c')
-rw-r--r-- | src/nvim/os/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/env.c b/src/nvim/os/env.c index 3aefbc39d1..b2e62453c5 100644 --- a/src/nvim/os/env.c +++ b/src/nvim/os/env.c @@ -43,7 +43,7 @@ char *os_getenvname_at_index(size_t index) if (str == NULL) { return NULL; } - int namesize = 0; + size_t namesize = 0; while (str[namesize] != '=' && str[namesize] != NUL) { namesize++; } |