diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-10-20 18:24:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-10-20 18:24:22 +0200 |
commit | 62dbdc4a5ae16900d17473dbfe3be3acea321bf0 (patch) | |
tree | 0b6ee730812c90da066596f30b1a503ff5798762 /src/os_mac_conv.c | |
parent | 667b4d2db96fbdb8d19d413138ce45d56bccbe0f (diff) | |
download | vim-git-62dbdc4a5ae16900d17473dbfe3be3acea321bf0.tar.gz |
updated for version 7.3.342v7.3.342
Problem: Code not in Vim style.
Solution: Fix the style. (Elias Diem)
Diffstat (limited to 'src/os_mac_conv.c')
-rw-r--r-- | src/os_mac_conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_mac_conv.c b/src/os_mac_conv.c index 71960daa5..2c4038ef1 100644 --- a/src/os_mac_conv.c +++ b/src/os_mac_conv.c @@ -77,7 +77,7 @@ mac_string_convert(ptr, len, lenp, fail_on_error, from_enc, to_enc, unconvlenp) *unconvlenp = 0; cfstr = CFStringCreateWithBytes(NULL, ptr, len, from, 0); - if(cfstr == NULL) + if (cfstr == NULL) fprintf(stderr, "Encoding failed\n"); /* When conversion failed, try excluding bytes from the end, helps when * there is an incomplete byte sequence. Only do up to 6 bytes to avoid |