mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cleanup: small coding style fixes
And addressing a cut and paste error in a comment. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1bdf00b2b4
commit
2feedf46fa
8 changed files with 13 additions and 17 deletions
|
@ -65,9 +65,9 @@ static char *to_utf8(unsigned char *in_string)
|
|||
|
||||
char *out_string = calloc(outlen, 1);
|
||||
for (i = 0; i < inlen; i++) {
|
||||
if (in_string[i] < 127)
|
||||
if (in_string[i] < 127) {
|
||||
out_string[j] = in_string[i];
|
||||
else {
|
||||
} else {
|
||||
if (in_string[i] > 127 && in_string[i] <= 173)
|
||||
in_string[i] = to_8859(in_string[i]);
|
||||
out_string[j] = (in_string[i] >> 6) | 0xC0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue