diff options
author | dequis <dx@dxzone.com.ar> | 2018-01-07 01:44:48 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2018-01-07 01:45:12 -0300 |
commit | f9c8365999c5319be6970dcf27f21190b0481314 (patch) | |
tree | 2e71524f7e960bde7da54f4f0a173c1f35d2b1ea /src/fe-common | |
parent | 121a4971e61176e326ee3d2f71867e87732f4519 (diff) | |
download | irssi-f9c8365999c5319be6970dcf27f21190b0481314.zip |
fe-common-core: fix redeclaration of server_tag_len
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/fe-common-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c index a8726314..791f56d4 100644 --- a/src/fe-common/core/fe-common-core.c +++ b/src/fe-common/core/fe-common-core.c @@ -478,7 +478,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest) return FALSE; } - int server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0; + server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0; for (tmp = array; *tmp != NULL; tmp++) { char *str = *tmp; if (*str == '\0') { |