diff options
author | Xavier G <xavier.github@kindwolf.org> | 2016-05-13 01:52:37 +0200 |
---|---|---|
committer | Xavier G <xavier.github@kindwolf.org> | 2016-05-13 01:52:37 +0200 |
commit | b0afcc96dbc13cf3a5ed94686bb227ab0d86ceaa (patch) | |
tree | 924d4d7d496b79ef8cd7baac9f733040f9aa1e31 /src/fe-common/core | |
parent | 5c74a3bb88db0fa32c459f8494e9f5a62a821baa (diff) | |
download | irssi-b0afcc96dbc13cf3a5ed94686bb227ab0d86ceaa.zip |
Rename advance() into string_advance().
Diffstat (limited to 'src/fe-common/core')
-rw-r--r-- | src/fe-common/core/formats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/formats.c b/src/fe-common/core/formats.c index 7daecfcf..def03e10 100644 --- a/src/fe-common/core/formats.c +++ b/src/fe-common/core/formats.c @@ -449,7 +449,7 @@ int format_get_length(const char *str) len++; } - len += advance(&str, utf8); + len += string_advance(&str, utf8); } g_string_free(tmp, TRUE); @@ -491,7 +491,7 @@ int format_real_length(const char *str, int len) } oldstr = str; - len -= advance(&str, utf8); + len -= string_advance(&str, utf8); if (len < 0) str = oldstr; } |