diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-04-29 21:56:49 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-29 17:51:09 -0300 |
commit | 2e4613aecc712eb5e893d341da5f571f932376d5 (patch) | |
tree | 41f6b1c751181319d88cc0fdb7aed61bf732701d /src/blowfish.c | |
parent | 046debb9359c85e2f2bc5c6d9481dac0025c6a80 (diff) | |
download | rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.tar.gz rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.tar.bz2 rneovim-2e4613aecc712eb5e893d341da5f571f932376d5.zip |
Remove NUL macro
Diffstat (limited to 'src/blowfish.c')
-rw-r--r-- | src/blowfish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blowfish.c b/src/blowfish.c index 67712a2fbc..707d3e53ee 100644 --- a/src/blowfish.c +++ b/src/blowfish.c @@ -567,7 +567,7 @@ void bf_crypt_decode(char_u *ptr, long len) void bf_crypt_init_keys(char_u *passwd) { char_u *p; - for (p = passwd; *p != NUL; p++) { + for (p = passwd; *p != '\0'; p++) { BF_CFB_UPDATE(*p); } } |