summaryrefslogtreecommitdiff
path: root/src/misc2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-05-31 21:27:30 +0200
committerBram Moolenaar <Bram@vim.org>2010-05-31 21:27:30 +0200
commit20a825ae0f90099249924740a5113e6ed413bc66 (patch)
tree701bee23df4392b438c677a8b28cf76b0240f8c7 /src/misc2.c
parenta3ff49fdccd518c91c9445ab3e82394b6812bf4a (diff)
downloadvim-20a825ae0f90099249924740a5113e6ed413bc66.zip
Add test for gettabvar() and settabvar().
Diffstat (limited to 'src/misc2.c')
-rw-r--r--src/misc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc2.c b/src/misc2.c
index f35019df6..88b12aa0d 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -3749,7 +3749,7 @@ update_keys(c)
int c; /* byte of plain text */
{
if (use_crypt_method > 0)
- bf_ofb_update( (unsigned char) c);
+ bf_ofb_update(c);
else
{
keys[0] = CRC32(keys[0], c);