diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-11-02 11:21:25 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-11-02 11:21:25 +0100 |
commit | dcd12626734ce81e89c74515eaca601ef9edf785 (patch) | |
tree | 8c9b6eec38d5ee62148db6ce62d5ae1561da0b2b /src/basic/string-util.c | |
parent | 6b61ae72fae00a94ebd36bee402c5a84c6aba14b (diff) |
Revert "utf8.[ch]: use char32_t and char16_t instead of int, int32_t, int16_t"
Diffstat (limited to 'src/basic/string-util.c')
-rw-r--r-- | src/basic/string-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/string-util.c b/src/basic/string-util.c index 4583a3ce2e..63b9b79df9 100644 --- a/src/basic/string-util.c +++ b/src/basic/string-util.c @@ -413,7 +413,7 @@ char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigne k = 0; for (i = s; k < x && i < s + old_length; i = utf8_next_char(i)) { - char32_t c; + int c; c = utf8_encoded_to_unichar(i); if (c < 0) @@ -425,7 +425,7 @@ char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigne x ++; for (j = s + old_length; k < new_length && j > i; ) { - char32_t c; + int c; j = utf8_prev_char(j); c = utf8_encoded_to_unichar(j); |