mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
fe-common-core: fix redeclaration of server_tag_len
This commit is contained in:
parent
121a4971e6
commit
f9c8365999
@ -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') {
|
||||
|
Loading…
Reference in New Issue
Block a user